1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

add alsa kernel driver (thanks to David Collet)

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1997 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nico
2005-09-29 07:18:31 +00:00
parent 1241032b01
commit 2f632513f2
10 changed files with 100 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
config BR2_PACKAGE_KMOD_ALSA
prompt "kmod-alsa - Alsa Sound Drivers"
tristate
default m if CONFIG_DEVEL
depends BR2_PACKAGE_KMOD_USB_CONTROLLER
select BR2_PACKAGE_KMOD_SOUNDCORE
help
Alsa Drivers for USB Soundcards

View File

@@ -0,0 +1,47 @@
# $Id$
include $(TOPDIR)/rules.mk
include ../../rules.mk
PKG_NAME:=alsa-driver
PKG_VERSION:=1.0.10rc1
PKG_RELEASE:=1
PKG_MD5SUM:=0fb6b4163c3ed8f4930f00791b8a25c1
PKG_SOURCE_URL:=ftp://ftp.alsa-project.org/pub/driver/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_CAT:=bzcat
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
ifeq ($(KERNEL_DIR),)
KERNEL_DIR:=$(LINUX_DIR)
endif
include $(TOPDIR)/package/rules.mk
$(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
(cd $(PKG_BUILD_DIR); \
./configure \
--with-kernel=$(KERNEL_DIR) \
--with-cross=$(KERNEL_CROSS) \
--with-oss=yes \
--with-isapnp=no \
--with-sequencer=no \
--with-cards=usb-audio \
);
touch $@
$(PKG_BUILD_DIR)/.built:
$(MAKE) -C $(PKG_BUILD_DIR)
touch $@
$(IPKG_KMOD_ALSA):
install -d -m0755 $(IDIR_KMOD_ALSA)/etc/modules.d
install -m0644 ./files/alsa.modules $(IDIR_KMOD_ALSA)/etc/modules.d/70-alsa
install -d -m0755 $(IDIR_KMOD_ALSA)/lib/modules/$(LINUX_VERSION)
install -m0644 $(PKG_BUILD_DIR)/modules/*.o \
$(IDIR_KMOD_ALSA)/lib/modules/$(LINUX_VERSION)/
$(IPKG_BUILD) $(IDIR_KMOD_ALSA) $(PACKAGE_DIR)

View File

@@ -0,0 +1,10 @@
snd-page-alloc
snd
snd-timer
snd-pcm
snd-rawmidi
snd-usb-lib
snd-hwdep
snd-usb-audio
snd-mixer-oss
snd-pcm-oss

View File

@@ -0,0 +1,7 @@
Package: kmod-alsa
Priority: optional
Section: kernel
Maintainer: OpenWrt Developers Team <openwrt-devel@openwrt.org>, David Collett <daveco@users.sourceforge.net>
Source: buildroot internal
Depends: kmod-usb-audio
Description: Alsa Drivers for USB Soundcards

View File

@@ -0,0 +1,12 @@
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