|
From: Paul M. <le...@us...> - 2006-07-24 22:42:50
|
Update of /cvsroot/linuxsh/linux/arch/sh/boot/compressed In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv22552/arch/sh/boot/compressed Modified Files: Makefile Log Message: More nommu fixups from Sato-san. Index: Makefile =================================================================== RCS file: /cvsroot/linuxsh/linux/arch/sh/boot/compressed/Makefile,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- Makefile 19 Jul 2006 14:41:11 -0000 1.15 +++ Makefile 24 Jul 2006 22:42:46 -0000 1.16 @@ -22,9 +22,9 @@ CONFIG_MEMORY_START ?= 0x0c000000 CONFIG_BOOT_LINK_OFFSET ?= 0x00800000 -IMAGE_OFFSET := $(shell printf "0x%8x" $$[$(CONFIG_PAGE_OFFSET) + \ - $(CONFIG_MEMORY_START) + \ - $(CONFIG_BOOT_LINK_OFFSET)]) +IMAGE_OFFSET := $(shell printf "0x%08x" $$[$(CONFIG_PAGE_OFFSET) + \ + $(CONFIG_MEMORY_START) + \ + $(CONFIG_BOOT_LINK_OFFSET)]) LIBGCC := $(shell $(CC) $(CFLAGS) -print-libgcc-file-name) |