Commit 82fddc39 authored by Alexandre Belloni's avatar Alexandre Belloni Committed by Peter Korsgaard
Browse files

Add on2-8170 kernel modules

parent f5eb7179
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -272,6 +272,7 @@ source "package/minicom/Config.in"
source "package/nanocom/Config.in"
source "package/neard/Config.in"
source "package/ofono/Config.in"
source "package/on2-8170-modules/Config.in"
source "package/open2300/Config.in"
source "package/openocd/Config.in"
source "package/owl-linux/Config.in"
+11 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_ON2_8170_MODULES
	bool "on2-8170 modules"
	depends on BR2_LINUX_KERNEL
	depends on BR2_arm926t
	help
	  Kernel modules for Hantro x170 hardware video decompression support.

	  http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer

comment "on2-8170 modules requires a linux kernel to be built"
	depends on !BR2_LINUX_KERNEL
+23 −0
Original line number Diff line number Diff line
################################################################################
#
# on2-8170-modules
#
################################################################################

ON2_8170_MODULES_VERSION = 73b0806
ON2_8170_MODULES_SITE    = http://github.com/alexandrebelloni/on2-8170-modules/tarball/$(ON2_8170_MODULES_VERSION)

ON2_8170_MODULES_DEPENDENCIES = linux

ON2_8170_MODULES_LICENSE = GPLv2+
#There is no license file

define ON2_8170_MODULES_BUILD_CMDS
	$(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D)
endef

define ON2_8170_MODULES_INSTALL_TARGET_CMDS
	$(MAKE) -C $(LINUX_DIR) $(LINUX_MAKE_FLAGS) M=$(@D) modules_install
endef

$(eval $(generic-package))