mirror of
https://git.busybox.net/buildroot.git
synced 2024-12-05 03:13:41 +08:00
a10disp: new package
Signed-off-by: Spenser Gilliland <spenser@gillilanding.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
parent
0e8cbd5902
commit
a51b43a68d
@ -230,6 +230,7 @@ source "package/ux500-firmware/Config.in"
|
||||
source "package/zd1211-firmware/Config.in"
|
||||
endmenu
|
||||
source "package/freescale-imx/Config.in"
|
||||
source "package/a10disp/Config.in"
|
||||
source "package/acpid/Config.in"
|
||||
source "package/cdrkit/Config.in"
|
||||
source "package/dbus/Config.in"
|
||||
|
12
package/a10disp/Config.in
Normal file
12
package/a10disp/Config.in
Normal file
@ -0,0 +1,12 @@
|
||||
config BR2_PACKAGE_A10DISP
|
||||
bool "a10disp"
|
||||
depends on BR2_arm
|
||||
depends on BR2_LINUX_KERNEL
|
||||
help
|
||||
Program to change the display mode of Allwinner ARM SOCs running
|
||||
the linux-sunxi kernel (and not the mainline kernel.)
|
||||
|
||||
http://github.com/hglm/a10disp
|
||||
|
||||
comment "a10disp requires the linux kernel"
|
||||
depends on BR2_arm && !BR2_LINUX_KERNEL
|
22
package/a10disp/a10disp.mk
Normal file
22
package/a10disp/a10disp.mk
Normal file
@ -0,0 +1,22 @@
|
||||
################################################################################
|
||||
#
|
||||
# a10disp
|
||||
#
|
||||
################################################################################
|
||||
|
||||
A10DISP_VERSION = a899cc6dcf
|
||||
A10DISP_SITE = http://github.com/hglm/a10disp/tarball/$(A10DISP_VERSION)
|
||||
A10DISP_LICENSE = MIT
|
||||
|
||||
A10DISP_DEPENDENCIES = linux
|
||||
|
||||
define A10DISP_BUILD_CMDS
|
||||
cp -f $(LINUX_DIR)/include/video/sunxi_disp_ioctl.h $(@D)/
|
||||
$(TARGET_CC) $(TARGET_CFLAGS) $(@D)/a10disp.c -o $(@D)/a10disp
|
||||
endef
|
||||
|
||||
define A10DISP_INSTALL_TARGET_CMDS
|
||||
$(INSTALL) -D -m 0755 $(@D)/a10disp $(TARGET_DIR)/usr/bin/a10disp
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
Loading…
Reference in New Issue
Block a user