Activity log for bug #1303246

Date Who What changed Old value New value Message
2014-04-06 06:42:05 Fathi Boudra bug added bug
2014-04-06 07:06:03 Fathi Boudra description On the road to multiplatform kernel, several platform don't allow to boot using linaro_deploy_kernel action. It's due to the device configs using bootm only most of the time. Some platforms have both bootm/bootz enabled in boot_cmds like beaglebone. We need more platforms converted to support multiplatform kernel. On the road to multiplatform kernel, several platform don't allow to boot using linaro_deploy_kernel action. It's due to the device configs using bootm only most of the time. Some platforms have both bootm/bootz enabled in boot_cmds like beaglebone. We need more platforms converted to support multiplatform kernel. In pyboot, it's default to bootm and use bootz if the kernel image starts with 'z': boot_cmd='bootm' if os.path.basename(kimage)[0] == 'z': boot_cmd='bootz'
2014-04-06 07:06:13 Fathi Boudra lava-dispatcher: assignee Tyler Baker (tyler-baker)
2014-04-06 07:18:34 Fathi Boudra description On the road to multiplatform kernel, several platform don't allow to boot using linaro_deploy_kernel action. It's due to the device configs using bootm only most of the time. Some platforms have both bootm/bootz enabled in boot_cmds like beaglebone. We need more platforms converted to support multiplatform kernel. In pyboot, it's default to bootm and use bootz if the kernel image starts with 'z': boot_cmd='bootm' if os.path.basename(kimage)[0] == 'z': boot_cmd='bootz' On the road to multiplatform kernel, several platform don't allow to boot using linaro_deploy_kernel action. It's due to the device configs using bootm only most of the time. Some platforms have both bootm/bootz enabled in boot_cmds like beaglebone. We need more platforms converted to support multiplatform kernel. In pyboot, it's default to bootm and use bootz if the kernel image starts with 'z':     boot_cmd='bootm'     if os.path.basename(kimage)[0] == 'z':         boot_cmd='bootz' which is fine when you use kernel image build output as is. Personally, I'll add vmlinuz for distro kernel support as well.
2014-04-07 15:54:17 Tyler Baker lava-dispatcher: status New Fix Committed
2014-04-07 15:54:20 Tyler Baker lava-dispatcher: importance Undecided High
2014-04-11 15:11:04 Tyler Baker lava-dispatcher: status Fix Committed Fix Released