This commit is contained in:
Eric Andersen 2004-02-27 05:34:31 +00:00
parent 2491944b16
commit ab45e76df2

View File

@ -28,10 +28,11 @@ LINUX_VERSION=2.4.23-erik
LINUX_FORMAT=bzImage
#LINUX_FORMAT=images/zImage.prep
LINUX_KARCH:= echo $(ARCH) | sed -e 's/i[3-9]86/i386/' \
LINUX_KARCH:=$(shell echo $(ARCH) | sed -e 's/i[3-9]86/i386/' \
sed -e 's/mipsel/mips/' \
sed -e 's/powerpc/ppc/' \
sed -e 's/sh[234]/sh/'
sed -e 's/sh[234]/sh/' \
)
LINUX_BINLOC=arch/$(LINUX_KARCH)/boot/$(LINUX_FORMAT)
LINUX_DIR=$(BUILD_DIR)/linux-$(LINUX_VERSION)