From 15fb17791a6fe75fb962800b51af3b78e653d9ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= Date: Sat, 28 Feb 2015 18:15:59 +0000 Subject: mpc83xx: start work on 3.18 support MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rafał Miłecki SVN-Revision: 44573 --- .../100-powerpc_create_fit_uImages.patch | 85 ++++++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 target/linux/mpc83xx/patches-3.18/100-powerpc_create_fit_uImages.patch (limited to 'target/linux/mpc83xx/patches-3.18/100-powerpc_create_fit_uImages.patch') diff --git a/target/linux/mpc83xx/patches-3.18/100-powerpc_create_fit_uImages.patch b/target/linux/mpc83xx/patches-3.18/100-powerpc_create_fit_uImages.patch new file mode 100644 index 0000000..ef58f14 --- /dev/null +++ b/target/linux/mpc83xx/patches-3.18/100-powerpc_create_fit_uImages.patch @@ -0,0 +1,85 @@ +--- a/arch/powerpc/Makefile ++++ b/arch/powerpc/Makefile +@@ -240,7 +240,9 @@ all: zImage + + # With make 3.82 we cannot mix normal and wildcard targets + BOOT_TARGETS1 := zImage zImage.initrd uImage +-BOOT_TARGETS2 := zImage% dtbImage% treeImage.% cuImage.% simpleImage.% uImage.% ++BOOT_TARGETS2 := uImage.fit.% zImage% dtbImage% treeImage.% cuImage.% \ ++ simpleImage.% uImage.% ++ + + PHONY += $(BOOT_TARGETS1) $(BOOT_TARGETS2) + +@@ -273,6 +275,7 @@ define archhelp + @echo '* zImage - Build default images selected by kernel config' + @echo ' zImage.* - Compressed kernel image (arch/$(ARCH)/boot/zImage.*)' + @echo ' uImage - U-Boot native image format' ++ @echo ' uImage.fit.
- U-Boot Flattened Image Tree image format' + @echo ' cuImage.
- Backwards compatible U-Boot image for older' + @echo ' versions which do not support device trees' + @echo ' dtbImage.
- zImage with an embedded device tree blob' +--- a/arch/powerpc/boot/.gitignore ++++ b/arch/powerpc/boot/.gitignore +@@ -14,6 +14,7 @@ kernel-vmlinux.strip.c + kernel-vmlinux.strip.gz + mktree + uImage ++uImage.fit.* + cuImage.* + dtbImage.* + *.dtb +--- a/arch/powerpc/boot/Makefile ++++ b/arch/powerpc/boot/Makefile +@@ -357,6 +357,9 @@ $(obj)/uImage.initrd.%: vmlinux $(obj)/% + $(obj)/uImage.%: vmlinux $(obj)/%.dtb $(wrapperbits) + $(call if_changed,wrap,uboot-$*,,$(obj)/$*.dtb) + ++$(obj)/uImage.fit.%: vmlinux $(obj)/%.dtb $(wrapperbits) ++ $(call if_changed,wrap,uboot.fit,,$(obj)/$*.dtb) ++ + $(obj)/cuImage.initrd.%: vmlinux $(obj)/%.dtb $(wrapperbits) + $(call if_changed,wrap,cuboot-$*,,$(obj)/$*.dtb,$(obj)/ramdisk.image.gz) + +@@ -399,6 +402,7 @@ zInstall: $(CONFIGURE) $(addprefix $(obj + + # anything not in $(targets) + clean-files += $(image-) $(initrd-) cuImage.* dtbImage.* treeImage.* \ ++ uImage.* \ + zImage zImage.initrd zImage.chrp zImage.coff zImage.holly \ + zImage.miboot zImage.pmac zImage.pseries \ + zImage.maple simpleImage.* otheros.bld *.dtb +--- a/arch/powerpc/boot/wrapper ++++ b/arch/powerpc/boot/wrapper +@@ -48,6 +48,9 @@ CROSS= + # mkimage wrapper script + MKIMAGE=$srctree/scripts/mkuboot.sh + ++# script to generate an .its file for uImage.fit.* images ++MKITS=$srctree/scripts/mkits.sh ++ + # directory for object and other files used by this script + object=arch/powerpc/boot + objbin=$object +@@ -365,6 +368,21 @@ uboot-obs600) + if [ -z "$cacheit" ]; then + rm -f "$vmz" + fi ++ exit 0 ++ ;; ++uboot.fit) ++ rm -f "$ofile" ++ ${MKITS} -A ppc -C gzip -a $membase -e $membase -v $version \ ++ -d "$srctree/$dtb" -k "$srctree/$vmz" -o "$object/uImage.its" ++ ++ # mkimage calls dtc for FIT images so use kernel dtc if necessary ++ export PATH=$PATH:$srctree/scripts/dtc ++ ++ ${MKIMAGE} -f "$object/uImage.its" "$ofile" ++ rm "$object/uImage.its" ++ if [ -z "$cacheit" ]; then ++ rm -f "$vmz" ++ fi + exit 0 + ;; + esac -- cgit v1.1