From: Arne Fitzenreiter Date: Sun, 23 Sep 2012 11:06:50 +0000 (-0400) Subject: v4ldvb: fix and enable build for omap. X-Git-Tag: v2.13-beta1~163^2~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=22a3f77293cf469932811130f4ce73143065b741;p=people%2Fms%2Fipfire-2.x.git v4ldvb: fix and enable build for omap. --- diff --git a/lfs/v4l-dvb b/lfs/v4l-dvb index 5f2751ad29..7b0b3351b6 100644 --- a/lfs/v4l-dvb +++ b/lfs/v4l-dvb @@ -79,6 +79,15 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar Jxf $(DIR_DL)/$(DL_FILE) cd $(DIR_APP) && patch -Np1 < $(DIR_SRC)/src/patches/v4l-dvb_rtl28xx_add_usb_ids.patch cd $(DIR_APP) && make allyesconfig KERNELRELEASE=$(KVER)-$(VERSUFIX) VER=$(XVER) +ifeq "$(KCFG)" "-omap" + # Disable failing OMAP2 Video Out and IR RX51 driver + cd $(DIR_APP) && sed -i -e \ + "s|^CONFIG_VIDEO_OMAP2_VOUT=m|# CONFIG_VIDEO_OMAP2_VOUT is not set|g" \ + v4l/.config + cd $(DIR_APP) && sed -i -e \ + "s|^CONFIG_IR_RX51=m|# CONFIG_IR_RX51 is not set|g" \ + v4l/.config +endif cd $(DIR_APP) && make all KERNELRELEASE=$(KVER)-$(VERSUFIX) VER=$(XVER) cd $(DIR_APP) && make install KERNELRELEASE=$(KVER)-$(VERSUFIX) VER=$(XVER) ln -sf $(DIR_APP)/ /usr/src/v4l-dvb diff --git a/make.sh b/make.sh index c139bf5275..92e5762f80 100755 --- a/make.sh +++ b/make.sh @@ -435,7 +435,7 @@ buildipfire() { # ipfiremake igb KCFG="-rpi" ipfiremake linux KCFG="-omap" -# ipfiremake v4l-dvb KCFG="-omap" + ipfiremake v4l-dvb KCFG="-omap" # ipfiremake kvm-kmod KCFG="-omap" # ipfiremake mISDN KCFG="-omap" ipfiremake cryptodev KCFG="-omap"