# This is a BitKeeper generated patch for the following project: # Project Name: Linux 2.4 for PowerPC development tree # This patch format is intended for GNU patch command version 2.5 or higher. # This patch includes the following deltas: # ChangeSet 1.1350 -> 1.1351 # arch/ppc/Makefile 1.57 -> 1.58 # arch/ppc/boot/images/Makefile 1.6 -> 1.7 # arch/ppc/boot/Makefile 1.49 -> 1.50 # (new) -> 1.1 scripts/mkuboot.sh # # The following is the BitKeeper ChangeSet Log # -------------------------------------------- # 03/08/07 waite@dayton.sky 1.1351 # U # -------------------------------------------- # diff -Nru a/arch/ppc/Makefile b/arch/ppc/Makefile --- a/arch/ppc/Makefile Thu Sep 18 09:45:53 2003 +++ b/arch/ppc/Makefile Thu Sep 18 09:45:53 2003 @@ -98,7 +98,7 @@ checks: @$(MAKE) -C arch/$(ARCH)/kernel checks -BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd +BOOT_TARGETS = zImage zImage.initrd znetboot znetboot.initrd uImage # All the instructions talk about "make bzImage". bzImage: zImage diff -Nru a/arch/ppc/boot/Makefile b/arch/ppc/boot/Makefile --- a/arch/ppc/boot/Makefile Thu Sep 18 09:45:53 2003 +++ b/arch/ppc/boot/Makefile Thu Sep 18 09:45:53 2003 @@ -17,7 +17,7 @@ AFLAGS += -D__BOOTER__ OBJCOPY_ARGS = -O elf32-powerpc -MKIMAGE := ./utils/mkimage.wrapper +MKIMAGE := $(TOPDIR)/scripts/mkuboot.sh lib/zlib.a: lib/zlib.c $(MAKE) -C lib @@ -67,12 +67,18 @@ gzip $(GZIP_FLAGS) images/vmapus endif +mkuboot: $(MKIMAGE) + cp $< $@ + chmod 755 $@ + + # Make an image for PPCBoot -pImage: images/vmlinux.gz - $(MKIMAGE) -A ppc -O linux -T kernel -C gzip -a 00000000 -e 00000000 \ +uImage: images/vmlinux.gz mkuboot + ./mkuboot -A ppc -O linux -T kernel -C gzip -a 00000000 -e 00000000 \ -n 'Linux-$(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)' \ - -d $< images/vmlinux.PPCBoot - ln -sf vmlinux.PPCBoot images/pImage + -d $< images/vmlinux.UBoot + ln -sf vmlinux.UBoot images/uImage + rm -f ./mkuboot # These are subdirs with files not normally rm'ed. -- Tom clean: diff -Nru a/arch/ppc/boot/images/Makefile b/arch/ppc/boot/images/Makefile --- a/arch/ppc/boot/images/Makefile Thu Sep 18 09:45:53 2003 +++ b/arch/ppc/boot/images/Makefile Thu Sep 18 09:45:53 2003 @@ -9,4 +9,4 @@ gzip -vf9 vmlinux clean: - rm -f sImage vmapus vmlinux* miboot* zImage* zvmlinux* + rm -f sImage vmapus vmlinux* miboot* zImage* zvmlinux* uImage diff -Nru a/arch/ppc/boot/simple/Makefile b/arch/ppc/boot/simple/Makefile diff -Nru a/scripts/mkuboot.sh b/scripts/mkuboot.sh --- /dev/null Wed Dec 31 16:00:00 1969 +++ b/scripts/mkuboot.sh Thu Sep 18 09:45:53 2003 @@ -0,0 +1,16 @@ +#!/bin/bash + +# +# Build U-Boot image when `mkimage' tool is available. +# + +MKIMAGE=$(type -path mkimage) + +if [ -z "${MKIMAGE}" ]; then + # Doesn't exist + echo '"mkimage" command not found - U-Boot images will not be built' >&2 + exit 0; +fi + +# Call "mkimage" to create U-Boot image +${MKIMAGE} "$@"