Update buidlroot to version 2016.08.1

This commit is contained in:
2016-11-16 22:07:29 +01:00
parent 807ab03547
commit a1061efbc2
3636 changed files with 59539 additions and 25783 deletions

View File

@@ -0,0 +1,9 @@
config BR2_PACKAGE_ODROID_SCRIPTS
bool "odroid-scripts"
depends on BR2_aarch64 || BR2_arm
select BR2_PACKAGE_FBSET # runtime
select BR2_PACKAGE_BUSYBOX_SHOW_OTHERS # needed for fbset
help
Install the scripts for the odroidc2 based systems.
https://github.com/mdrjr/c2_bootini

View File

@@ -0,0 +1,20 @@
#!/bin/sh
#
# Set up frame buffer
#
case "$1" in
start)
echo "Setting up display..."
/usr/sbin/odroidc2_init_fb.sh
;;
stop)
;;
restart|reload)
;;
*)
echo "Usage: $0 {start|stop|restart}"
exit 1
esac
exit $?

View File

@@ -0,0 +1,2 @@
# Locally computed hash
sha256 779e8beccf8c66d51e495a4cc0e6eccf72c295499a1ecdc0740aa4459de786a0 odroid-scripts-a252de04562dcf8d8a4918a544b45a9e3d46d2fb.tar.gz

View File

@@ -0,0 +1,36 @@
################################################################################
#
# odroid-scripts
#
################################################################################
ODROID_SCRIPTS_VERSION = a252de04562dcf8d8a4918a544b45a9e3d46d2fb
ODROID_SCRIPTS_SITE = $(call github,mdrjr,c2_bootini,$(ODROID_SCRIPTS_VERSION))
ODROID_SCRIPTS_LICENSE = unclear
ifeq ($(BR2_PACKAGE_HAS_UDEV),y)
define ODROID_SCRIPTS_INSTALL_UDEV_RULES
$(INSTALL) -D -m 0644 $(@D)/10-odroid.rules \
$(TARGET_DIR)/etc/udev/rules.d/10-odroid.rules
endef
endif
define ODROID_SCRIPTS_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/c2_init.sh $(TARGET_DIR)/usr/sbin/odroidc2_init_fb.sh
$(ODROID_SCRIPTS_INSTALL_UDEV_RULES)
endef
define ODROID_SCRIPTS_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 0644 $(@D)/amlogic.service \
$(TARGET_DIR)/usr/lib/systemd/system/odroidc2_fb.service
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
ln -fs ../../../../usr/lib/systemd/system/odroidc2_fb.service \
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/odroidc2_fb.service
endef
define ODROID_SCRIPTS_INSTALL_INIT_SYSV
$(INSTALL) -D -m 0755 package/odroid-scripts/S50odroidc2_fb \
$(TARGET_DIR)/etc/init.d/S50odroidc2_fb
endef
$(eval $(generic-package))