Update of /cvsroot/linuxdc/linux/arch/sh/boot/compressed
In directory usw-pr-cvs1:/tmp/cvs-serv30769/arch/sh/boot/compressed
Modified Files:
Makefile
Log Message:
ZIMAGE_BASE_OFFSET
Index: Makefile
===================================================================
RCS file: /cvsroot/linuxdc/linux/arch/sh/boot/compressed/Makefile,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** Makefile 2000/12/09 00:36:00 1.1.1.1
--- Makefile 2001/03/05 01:29:23 1.2
***************
*** 19,23 ****
# ZIMAGE_OFFSET is the load offset of the compression loader
#
! ZIMAGE_OFFSET = $(shell printf "0x%8x" $$[0x80000000+0x$(CONFIG_MEMORY_START)+0x200000+0x10000])
ZLINKFLAGS = -Ttext $(ZIMAGE_OFFSET) $(ZLDFLAGS)
--- 19,29 ----
# ZIMAGE_OFFSET is the load offset of the compression loader
#
! # ZIMAGE_BASE_SIZE is how far to load the zImage after CONFIG_MEMORY_START, to make
! # sure zImage doesn't overwrite a preloaded ramdisk.
! ZIMAGE_BASE_SIZE = 0x200000
! ifdef CONFIG_SH_DREAMCAST
! ZIMAGE_BASE_SIZE = 0x700000
! endif
! ZIMAGE_OFFSET = $(shell printf "0x%8x" $$[0x80000000+0x$(CONFIG_MEMORY_START)+$(ZIMAGE_BASE_SIZE)+0x10000])
ZLINKFLAGS = -Ttext $(ZIMAGE_OFFSET) $(ZLDFLAGS)
|