diff options
author | Pierre-Jean Texier <pjtexier@koncepto.io> | 2019-04-13 18:08:41 +0200 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2019-04-14 12:31:18 -0300 |
commit | 0ef9809cc7317760f8e51d1dde8b16521e9fe1d5 (patch) | |
tree | 899b5c962ee63190cc5a23ee23b94306ff9ff816 /wic | |
parent | f07fbd00d4b6dff96dc771a683a6e32260c96561 (diff) | |
download | meta-freescale-0ef9809cc7317760f8e51d1dde8b16521e9fe1d5.tar.gz |
wic: Fix image generation for i.MX with bootpart script
Some boards expects a specific binary name.
Example : WaRP7 required the u-boot-dtb.imx file (instead of u-boot.imx).
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Diffstat (limited to 'wic')
-rw-r--r-- | wic/imx-uboot-bootpart.wks.in (renamed from wic/imx-uboot-bootpart.wks) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wic/imx-uboot-bootpart.wks b/wic/imx-uboot-bootpart.wks.in index a5e0137b..8fe019c0 100644 --- a/wic/imx-uboot-bootpart.wks +++ b/wic/imx-uboot-bootpart.wks.in | |||
@@ -12,7 +12,7 @@ | |||
12 | # | | | | | 12 | # | | | | |
13 | # 0 1kiB 4MiB 16MiB + rootfs + IMAGE_EXTRA_SPACE (default 10MiB) | 13 | # 0 1kiB 4MiB 16MiB + rootfs + IMAGE_EXTRA_SPACE (default 10MiB) |
14 | # | 14 | # |
15 | part u-boot --source rawcopy --sourceparams="file=u-boot.imx" --ondisk mmcblk --no-table --align 1 | 15 | part u-boot --source rawcopy --sourceparams="file=${UBOOT_BINARY}" --ondisk mmcblk --no-table --align 1 |
16 | part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4096 --size 16 | 16 | part /boot --source bootimg-partition --ondisk mmcblk --fstype=vfat --label boot --active --align 4096 --size 16 |
17 | part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096 | 17 | part / --source rootfs --ondisk mmcblk --fstype=ext4 --label root --align 4096 |
18 | 18 | ||