diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-01-07 22:44:06 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-01-10 07:18:27 -0500 |
commit | a780c6e86851c6479851186c5d5b9fb2b201bec7 (patch) | |
tree | c72988c927a34c477f1fe19dda9f092a35bc278c /arch/blackfin/boot | |
parent | b66acb63f5593ac11e39ab1cf17e1f987bc5ff9c (diff) | |
download | op-kernel-dev-a780c6e86851c6479851186c5d5b9fb2b201bec7.zip op-kernel-dev-a780c6e86851c6479851186c5d5b9fb2b201bec7.tar.gz |
Blackfin: encode cpu-rev into uImage name
Encoding the cpu family name apparently confuses people when they try to
boot an image on a sub-variant, so encode the specific cpu name and the
silicon rev instead.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'arch/blackfin/boot')
-rw-r--r-- | arch/blackfin/boot/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/blackfin/boot/Makefile b/arch/blackfin/boot/Makefile index 13d2dbd..0a49279 100644 --- a/arch/blackfin/boot/Makefile +++ b/arch/blackfin/boot/Makefile @@ -17,7 +17,7 @@ UIMAGE_OPTS-$(CONFIG_ROMKERNEL) += -a $(CONFIG_ROM_BASE) -x quiet_cmd_uimage = UIMAGE $@ cmd_uimage = $(CONFIG_SHELL) $(MKIMAGE) -A $(ARCH) -O linux -T kernel \ - -C $(2) -n '$(MACHINE)-$(KERNELRELEASE)' \ + -C $(2) -n '$(CPU_REV)-$(KERNELRELEASE)' \ -e $(shell $(NM) vmlinux | awk '$$NF == "__start" {print $$1}') \ $(UIMAGE_OPTS-y) -d $< $@ |