package/odroid-scripts: remove package

Package is not needed anymore after support for odroid2c was dropped:
https://git.buildroot.net/buildroot/commit/?id=b80712a16ae3deb65331a7923aa878e13e2e66b6

Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Bernd Kuhls 2019-08-10 12:59:54 +02:00 committed by Thomas Petazzoni
parent 336a47daed
commit 7d18f299ab
7 changed files with 7 additions and 69 deletions

View File

@ -146,6 +146,13 @@ endif
comment "Legacy options removed in 2019.08"
config BR2_PACKAGE_ODROID_SCRIPTS
bool "odroid-scripts package was removed"
select BR2_LEGACY
help
Support for odroidc2 based systems was removed, making the
odroid-scripts package useless.
config BR2_PACKAGE_ODROID_MALI
bool "odroid-mali package was removed"
select BR2_LEGACY

View File

@ -579,7 +579,6 @@ F: package/kvm-unit-tests
N: Dagg Stompler <daggs@gmx.com>
F: package/libamcodec/
F: package/odroid-scripts/
N: Daniel J. Leach <dleach@belcan.com>
F: package/dacapo/

View File

@ -487,7 +487,6 @@ endmenu
source "package/nvidia-driver/Config.in"
source "package/nvidia-tegra23/Config.in"
source "package/nvme/Config.in"
source "package/odroid-scripts/Config.in"
source "package/ofono/Config.in"
source "package/on2-8170-modules/Config.in"
source "package/open2300/Config.in"

View File

@ -1,9 +0,0 @@
config BR2_PACKAGE_ODROID_SCRIPTS
bool "odroid-scripts"
depends on BR2_aarch64 || BR2_arm || BR2_armeb
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

@ -1,20 +0,0 @@
#!/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

@ -1,2 +0,0 @@
# Locally computed hash
sha256 9d61472ee6aed2d1a7b5afdcb91b823003c8524a242572f24f89d4e57323daf3 odroid-scripts-cfd289b1d69136b8bfd725d90cd648da4654f2bd.tar.gz

View File

@ -1,36 +0,0 @@
################################################################################
#
# 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))