e6ea6b7865
There is no benefit in using the shortened git revision hash. On the contrary: the shorter the hash, the higher the risk of having collisions with another commit. Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Acked-by: Samuel Martin <s.martin49@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
712 B
Makefile
24 lines
712 B
Makefile
################################################################################
|
|
#
|
|
# on2-8170-modules
|
|
#
|
|
################################################################################
|
|
|
|
ON2_8170_MODULES_VERSION = 73b08061d30789178e692bc332b73d1d9922bf39
|
|
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))
|