diff options
Diffstat (limited to 'mdk-stage1')
-rw-r--r-- | mdk-stage1/Makefile | 6 | ||||
-rw-r--r-- | mdk-stage1/Makefile.common | 6 |
2 files changed, 11 insertions, 1 deletions
diff --git a/mdk-stage1/Makefile b/mdk-stage1/Makefile index 38e059b8e..1f2ea6803 100644 --- a/mdk-stage1/Makefile +++ b/mdk-stage1/Makefile @@ -135,6 +135,9 @@ endif ifeq (mips, $(ARCH)) DIRS += sysfs endif +ifeq (arm, $(ARCH)) +DIRS += sysfs +endif ifeq (i386,$(ARCH)) @@ -148,6 +151,9 @@ endif ifeq (mips,$(ARCH)) PCMCIA_LIB = sysfs/libsysfs.a endif +ifeq (arm,$(ARCH)) +PCMCIA_LIB = sysfs/libsysfs.a +endif USB_DEFS_GEN = -DENABLE_USB USB_DEFS = -DENABLE_USB -DDISABLE_PCIADAPTERS diff --git a/mdk-stage1/Makefile.common b/mdk-stage1/Makefile.common index 95bc6d3cb..1525e8d5d 100644 --- a/mdk-stage1/Makefile.common +++ b/mdk-stage1/Makefile.common @@ -16,6 +16,7 @@ ARCH := $(patsubst i%86,i386,$(shell uname -m)) ARCH := $(patsubst sparc%,sparc,$(ARCH)) +ARCH := $(patsubst arm%,arm,$(ARCH)) # DEBUG = 1 @@ -26,10 +27,13 @@ else F = NEWT endif -# diet libc syscalls are broken +# diet libc syscalls are broken on mips ifneq (mips, $(ARCH)) +# diet libc eabi support is mostly broken +ifneq (arm, $(ARCH)) DIET = $(shell test -x /usr/bin/diet && echo diet) endif +endif ifeq ($(DIET), diet) |