From ae43b56d6a50e06ab6fe6805ee8ad510c734f837 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Fri, 27 Feb 2004 00:26:57 +0000 Subject: Better deal with arches like mips that have odd kernel dir naming --- make/linux.mk | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'make') diff --git a/make/linux.mk b/make/linux.mk index 2600afc01..442c55b3d 100644 --- a/make/linux.mk +++ b/make/linux.mk @@ -27,6 +27,11 @@ DOWNLOAD_LINUX_VERSION=2.4.23 LINUX_VERSION=2.4.23-erik LINUX_FORMAT=bzImage +LINUX_KARCH:= 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/' +LINUX_BINLOC=arch/$(LINUX_KARCH)/boot/$(LINUX_FORMAT) LINUX_BINLOC=arch/$(ARCH)/boot/$(LINUX_FORMAT) #LINUX_FORMAT=zImage #LINUX_BINLOC=arch/ppc/boot/images/zImage.prep -- cgit v1.2.3