aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Dechesne <nicolas.dechesne@linaro.org>2015-03-19 09:43:51 +0100
committerNicolas Dechesne <nicolas.dechesne@linaro.org>2015-03-19 15:52:56 +0100
commit7460528f18cfc06c24c6712a27f3c0d0b92d6979 (patch)
tree96a9ca717bc287750f4f6a8d34fe62e81280a70a
parent31625bbee9659461227fa9b42c6bc8b76000f485 (diff)
lt-qcom-ubuntu-images: remove hack related to fixup.bin
This hack is no longer needed since kernel commit: mm: Don't offset memmap for flatmem This patch is included in the LT tree since the 3.18 branch, let's get rid of it now. Change-Id: If18c56a200538ee20d5d3975389ae17379059bd0 Signed-off-by: Nicolas Dechesne <nicolas.dechesne@linaro.org>
-rw-r--r--lt-qcom-ubuntu-images.yaml12
1 files changed, 1 insertions, 11 deletions
diff --git a/lt-qcom-ubuntu-images.yaml b/lt-qcom-ubuntu-images.yaml
index 6c3eeae..f8fb5d4 100644
--- a/lt-qcom-ubuntu-images.yaml
+++ b/lt-qcom-ubuntu-images.yaml
@@ -198,21 +198,11 @@
cmdline = console=tty0 console=${SERIAL_CONSOLE},115200n8 root=/dev/mmcblk0p13 rootwait rw text
EOF
- # IFC6410 needs ATAG fixup to boot
- cp -a fixup.bin out/fixup-qcom-apq8064-ifc6410.bin
- cp -a fixup.bin out/fixup-qcom-apq8064-cm-qs600.bin
-
# Create one boot image for each platform supported, since we need to append DTB to zImage
- # fixup.bin used to fixup loader to boot mainline on Qualcomm platforms that needs adjustment
- # of ATAG MEM
for f in ${DTBS} ; do
mv out/dtbs/${f} out/
target=`basename ${f} .dtb`
- if [ -f "out/fixup-${target}.bin" ]; then
- cat out/fixup-${target}.bin out/zImage out/${f} > zImage-dtb
- else
- cat out/zImage out/${f} > zImage-dtb
- fi
+ cat out/zImage out/${f} > zImage-dtb
abootimg --create out/boot-${target}-${PLATFORM_NAME}-${VERSION}.img -f out/bootimg.cfg -k zImage-dtb -r out/initrd.img-*
gzip -9 out/boot-${target}-${PLATFORM_NAME}-${VERSION}.img
done