summaryrefslogtreecommitdiffstats
path: root/target/linux
diff options
context:
space:
mode:
authornico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-03 02:16:27 +0000
committernico <nico@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-10-03 02:16:27 +0000
commite25b18ef81b8fcfc5507dd9a74f0bf4e78cdf8e1 (patch)
treed6529fd2775228812e8caaeee4b8eda153fa007e /target/linux
parent5a4e70d3d93c8650be70d814b3407473431b04c0 (diff)
fix build when arch != mipsel
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2038 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux')
-rw-r--r--target/linux/package/alsa/Makefile10
-rw-r--r--target/linux/package/alsa/patches/100-kernel_cflags.patch12
2 files changed, 9 insertions, 13 deletions
diff --git a/target/linux/package/alsa/Makefile b/target/linux/package/alsa/Makefile
index 16b9aed29..c2742cccd 100644
--- a/target/linux/package/alsa/Makefile
+++ b/target/linux/package/alsa/Makefile
@@ -20,6 +20,13 @@ endif
include $(TOPDIR)/package/rules.mk
+ifeq ($(LINUX_KARCH),i386)
+KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time
+endif
+ifeq ($(LINUX_KARCH),mips)
+KERNEL_C_OPTS:= -Os -G 0 -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap
+endif
+
$(eval $(call PKG_template,KMOD_ALSA,kmod-alsa,$(LINUX_VERSION)$(BOARD)+$(PKG_VERSION)-$(PKG_RELEASE),$(ARCH),kernel-$(LINUX_VERSION)-$(BOARD) ($(KERNEL_RELEASE))))
$(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
@@ -35,7 +42,8 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.prepared
touch $@
$(PKG_BUILD_DIR)/.built:
- $(MAKE) -C $(PKG_BUILD_DIR)
+ $(MAKE) -C $(PKG_BUILD_DIR) \
+ c_opts="$(KERNEL_C_OPTS)"
touch $@
$(IPKG_KMOD_ALSA):
diff --git a/target/linux/package/alsa/patches/100-kernel_cflags.patch b/target/linux/package/alsa/patches/100-kernel_cflags.patch
deleted file mode 100644
index 08ed6ad28..000000000
--- a/target/linux/package/alsa/patches/100-kernel_cflags.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -rNu alsa-driver-1.0.9b/Makefile.conf.in alsa-driver-1.0.9b.new/Makefile.conf.in
---- alsa-driver-1.0.9b/Makefile.conf.in 2005-04-15 23:09:33.000000000 +1000
-+++ alsa-driver-1.0.9b.new/Makefile.conf.in 2005-09-04 11:29:15.000000000 +1000
-@@ -53,6 +53,8 @@
- INCLUDE = -I$(TOPDIR)/include @EXTRA_INCLUDES@ @KERNEL_INC@
- CFLAGS = $(MODFLAGS) $(INCLUDE) $(c_opts) -Wall -Wstrict-prototypes \
- -fomit-frame-pointer -Wno-trigraphs -O2 -fno-strict-aliasing -fno-common \
-+ -mno-abicalls -fno-pic -finline-limit=100000 -mabi=32 -march=mips32 \
-+ -Wa,-32 -Wa,-march=mips32 -Wa,-mips32 -Wa,--trap -mlong-calls \
- -pipe -DALSA_BUILD -nostdinc -iwithprefix include
- ifdef CONFIG_SND_MVERSION
- CFLAGS += -DMODVERSIONS -include $(CONFIG_SND_KERNELDIR)/include/linux/modversions.h