diff options
author | Yutang Jiang <yutang.jiang@nxp.com> | 2016-11-09 23:51:48 +0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-11-16 10:54:33 +0100 |
commit | 4162a7eba629bd93ddacfbfbb1c1402ded8a56b0 (patch) | |
tree | 0bc24c2d539d7b2142c340f61ef5a4e4bf62ada3 /target/linux/layerscape | |
parent | 10889d3ebe3de13c5e36c53a1fa2d6c298143163 (diff) | |
download | upstream-4162a7eba629bd93ddacfbfbb1c1402ded8a56b0.tar.gz upstream-4162a7eba629bd93ddacfbfbb1c1402ded8a56b0.tar.bz2 upstream-4162a7eba629bd93ddacfbfbb1c1402ded8a56b0.zip |
layerscape: ls1012ardb: only reserve ext4 fs as default firmware.bin
In Device/ls1012ardb IMAGES variable, there are two separate firmware
references to the same packages, while do mult-job compile, the same package
build process will arise conflict occasionally. So, only reserve one ext4 fs
as the default firmware.bin.
Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>
Diffstat (limited to 'target/linux/layerscape')
-rw-r--r-- | target/linux/layerscape/image/Makefile | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/target/linux/layerscape/image/Makefile b/target/linux/layerscape/image/Makefile index 6005e91cc4..bb94ff863f 100644 --- a/target/linux/layerscape/image/Makefile +++ b/target/linux/layerscape/image/Makefile @@ -73,10 +73,6 @@ ifeq ($(SUBTARGET),32b) endif IMAGE/firmware.bin = append-ls-rcw $(1) | pad-to 1M | append-ls-uboot $(1) | pad-to 3M | \ append-ls-dtb $$(DEVICE_DTS) | pad-to 4M | append-kernel | pad-to 9M | \ - append-rootfs | pad-to 32M | check-size 33554433 - IMAGES += firmware.ext4.bin - IMAGE/firmware.ext4.bin = append-ls-rcw $(1) | pad-to 1M | append-ls-uboot $(1) | pad-to 3M | \ - append-ls-dtb $$(DEVICE_DTS) | pad-to 4M | append-kernel | pad-to 9M | \ append-ls-rootfs-ext4 $(1) 23M | check-size 33554433 endef TARGET_DEVICES += ls1012ardb |