missing zImage support
Bug #1208678 reported by
Fathi Boudra
This bug affects 2 people
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Linaro Image Tools |
Triaged
|
Critical
|
Riku Voipio |
Bug Description
l-i-t is assuming U-Boot is the bootloader and make uImage (make_uImage) unconditionally.
It's making zImage unusable with l-i-t. Here's a couple of use-cases:
- u-boot bootz command to load zImage
- uefi loading zImage
Related branches
lp://staging/~gesha/linaro-image-tools/1208678
Ready for review
for merging
into
lp://staging/linaro-image-tools/11.11
- linaro-image-tools maintainers: Pending requested
-
Diff: 419 lines (+95/-38)5 files modifiedlinaro_image_tools/hwpack/config.py (+16/-0)
linaro_image_tools/hwpack/hardwarepack.py (+8/-2)
linaro_image_tools/hwpack/hwpack_fields.py (+2/-0)
linaro_image_tools/media_create/boards.py (+24/-13)
linaro_image_tools/media_create/tests/test_media_create.py (+45/-23)
Changed in linaro-image-tools: | |
status: | New → Confirmed |
importance: | Undecided → High |
milestone: | none → 2013.08 |
Changed in linaro-image-tools: | |
milestone: | 2013.08 → 2013.09 |
Changed in linaro-image-tools: | |
assignee: | nobody → Georgy Redkozubov (gesha) |
Changed in linaro-image-tools: | |
milestone: | 2013.09 → 2013.10 |
Changed in linaro-image-tools: | |
status: | Confirmed → In Progress |
Changed in linaro-image-tools: | |
assignee: | Georgy Redkozubov (gesha) → Milo Casagrande (milo) |
Changed in linaro-image-tools: | |
milestone: | 2013.10 → 2013.12 |
Changed in linaro-image-tools: | |
milestone: | 2013.12 → 2014.01 |
Changed in linaro-image-tools: | |
milestone: | 2014.01 → backlog |
status: | In Progress → Triaged |
importance: | High → Low |
Changed in linaro-image-tools: | |
milestone: | backlog → 2014.03 |
assignee: | Milo Casagrande (milo) → Fathi Boudra (fboudra) |
assignee: | Fathi Boudra (fboudra) → Riku Voipio (riku-voipio) |
importance: | Low → Critical |
To post a comment you must log in.
It's almost not possible to detect kernel image type during runtime. The option is to add another variable to hwpack like 'kernel_image_type' and if it is not set or set to 'uImage' we just do the same as nowdays, if it is set to 'zImage' we copy 'kernel_file' to the bootdisk as 'zImage'.