diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-05-31 15:27:00 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-05-31 15:27:00 +0000 |
commit | 7486d2e8d5b442143ce94c0524e86a67b5c338b9 (patch) | |
tree | f2283b12ee5555d45168f469f97222fc17c47ec3 /openwrt/package/alsa/Makefile | |
parent | 9d4ba07b77f5fab19e1be47ea8b3990b9ed8b44e (diff) | |
download | mtk-20170518-7486d2e8d5b442143ce94c0524e86a67b5c338b9.zip mtk-20170518-7486d2e8d5b442143ce94c0524e86a67b5c338b9.tar.gz mtk-20170518-7486d2e8d5b442143ce94c0524e86a67b5c338b9.tar.bz2 |
move alsa from target/linux/package to package, add compile fix for linux 2.4
SVN-Revision: 3862
Diffstat (limited to 'openwrt/package/alsa/Makefile')
-rw-r--r-- | openwrt/package/alsa/Makefile | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/openwrt/package/alsa/Makefile b/openwrt/package/alsa/Makefile new file mode 100644 index 0000000..5703db1 --- /dev/null +++ b/openwrt/package/alsa/Makefile @@ -0,0 +1,70 @@ +# $Id$ + +include $(TOPDIR)/rules.mk +include $(TOPDIR)/package/kernel.mk + +PKG_NAME:=alsa-driver +PKG_VERSION:=1.0.11 +PKG_RELEASE:=1 +PKG_MD5SUM:=57534e4297cd683371402220e3753885 + +PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/ +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 +PKG_CAT:=bzcat + +PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION) + +include $(TOPDIR)/package/rules.mk + +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 +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 +endif + +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 \ + ); +endef + +define Build/Compile + $(MAKE) -C $(PKG_BUILD_DIR) \ + ARCH="$(LINUX_KARCH)" \ + CROSS_COMPILE="$(TARGET_CROSS)" \ + c_opts="$(KERNEL_C_OPTS)" \ + all +endef + +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 Package/kmod-alsa/install + install -d -m0755 $(1)/etc/modules.d + install -m0644 ./files/alsa.modules $(1)/etc/modules.d/70-alsa + install -d -m0755 $(1)/lib/modules/$(LINUX_VERSION) + install -m0644 $(PKG_BUILD_DIR)/modules/*.$(LINUX_KMOD_SUFFIX) \ + $(1)/lib/modules/$(LINUX_VERSION)/ +endef + +$(eval $(call BuildPackage,kmod-alsa)) |