update buildroot to 2017.02.11

This commit is contained in:
jbnadal
2018-05-22 15:35:47 +02:00
parent 4bf1f5e091
commit a3c10bd762
9257 changed files with 433426 additions and 1701 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 9d61472ee6aed2d1a7b5afdcb91b823003c8524a242572f24f89d4e57323daf3 odroid-scripts-cfd289b1d69136b8bfd725d90cd648da4654f2bd.tar.gz

View File

@@ -0,0 +1,36 @@
################################################################################
#
# odroid-scripts
#
################################################################################
ODROID_SCRIPTS_VERSION = cfd289b1d69136b8bfd725d90cd648da4654f2bd
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/S02odroidc2_fb \
$(TARGET_DIR)/etc/init.d/S02odroidc2_fb
endef
$(eval $(generic-package))