X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0b0afa4d818ec18187b09055fbb8d84a01590d6e..93b646c8f58b3e84b3b3db1ab73f2cad4a44a650:/package/alsa/Makefile

diff --git a/package/alsa/Makefile b/package/alsa/Makefile
index 7046bfee9..2ac0b9433 100644
--- a/package/alsa/Makefile
+++ b/package/alsa/Makefile
@@ -1,3 +1,9 @@
+# 
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
 # $Id$
 
 include $(TOPDIR)/rules.mk
@@ -6,47 +12,53 @@ include $(INCLUDE_DIR)/kernel.mk
 PKG_NAME:=alsa-driver
 PKG_VERSION:=1.0.11
 PKG_RELEASE:=1
-PKG_MD5SUM:=57534e4297cd683371402220e3753885
 
-PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
-PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/
 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
+PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/
+PKG_MD5SUM:=57534e4297cd683371402220e3753885
 PKG_CAT:=bzcat
 
+PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
+
 include $(INCLUDE_DIR)/package.mk
 
+define Package/kmod-alsa
+  SECTION:=kernel
+  CATEGORY:=Kernel drivers
+  DEPENDS:=@USB_SUPPORT
+  TITLE:=Advanced Linux Sound Architecture
+  URL:=http://alsa-project.org/
+  VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
+endef
+
+ifeq ($(KERNEL),2.4)
+  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
+endif
 ifeq ($(LINUX_KARCH),i386)
-KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default
-KERNEL_C_OPTS:= -Os -mpreferred-stack-boundary=2 -march=i486 -fno-unit-at-a-time
+  KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-i386/mach-generic -I$(LINUX_DIR)/include/asm-i386/mach-default
 endif
 ifeq ($(LINUX_KARCH),mips)
-KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic
-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
+  KERNEL_C_INCS:= -I$(LINUX_DIR)/include/asm-mips/mach-generic
 endif
 
-define Package/kmod-alsa
-SECTION:=drivers
-CATEGORY:=Drivers
-DEPENDS:=@PCI_SUPPORT
-TITLE:=Advanced Linux Sound Architecture
-DESCRIPTION:=Advanced Linux Sound Architecture
-URL:=http://alsa-project.org/
-VERSION:=$(LINUX_VERSION)+$(PKG_VERSION)-$(BOARD)-$(PKG_RELEASE)
-endef
-
 define Build/Configure
 	(cd $(PKG_BUILD_DIR); \
 		CFLAGS="$(KERNEL_C_INCS)" \
 		./configure \
-		--with-build=$(LINUX_DIR) \
-		--with-kernel=$(LINUX_DIR) \
-		--with-cross=$(KERNEL_CROSS) \
-		--with-redhat=no \
-		--with-suse=no \
-		--with-oss=yes \
-		--with-isapnp=no \
-		--with-sequencer=no \
-		--with-cards=usb-audio \
+			--with-build="$(LINUX_DIR)" \
+			--with-kernel="$(LINUX_DIR)" \
+			--with-cross="$(KERNEL_CROSS)" \
+			--with-redhat=no \
+			--with-suse=no \
+			--with-oss=yes \
+			--with-isapnp=no \
+			--with-sequencer=no \
+			--with-cards=usb-audio \
 	);
 endef
 
@@ -55,6 +67,7 @@ define Build/Compile
 		ARCH="$(LINUX_KARCH)" \
 		CROSS_COMPILE="$(TARGET_CROSS)" \
 		c_opts="$(KERNEL_C_OPTS)" \
+		CP="$(CP)" \
 		all
 endef