diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-02-08 21:58:55 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-02-14 14:10:51 +0100 |
commit | 7d7aa2fd924c27829ec25f825481554dd81bce97 (patch) | |
tree | 658b87b89331670266163e522ea5fb52535633cb /target/linux/brcm2708/base-files/etc | |
parent | e7bfda2c243e66a75ff966ba04c28b1590b5d24c (diff) | |
download | upstream-7d7aa2fd924c27829ec25f825481554dd81bce97.tar.gz upstream-7d7aa2fd924c27829ec25f825481554dd81bce97.tar.bz2 upstream-7d7aa2fd924c27829ec25f825481554dd81bce97.zip |
brcm2708: rename target to bcm27xx
This change makes the names of Broadcom targets consistent by using
the common notation based on SoC/CPU ID (which is used internally
anyway), bcmXXXX instead of brcmXXXX.
This is even used for target TITLE in make menuconfig already,
only the short target name used brcm so far.
Despite, since subtargets range from bcm2708 to bcm2711, it seems
appropriate to use bcm27xx instead of bcm2708 (again, as already done
for BOARDNAME).
This also renames the packages brcm2708-userland and brcm2708-gpu-fw.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/base-files/etc')
-rwxr-xr-x | target/linux/brcm2708/base-files/etc/board.d/02_network | 32 | ||||
-rw-r--r-- | target/linux/brcm2708/base-files/etc/diag.sh | 35 | ||||
-rw-r--r-- | target/linux/brcm2708/base-files/etc/inittab | 4 |
3 files changed, 0 insertions, 71 deletions
diff --git a/target/linux/brcm2708/base-files/etc/board.d/02_network b/target/linux/brcm2708/base-files/etc/board.d/02_network deleted file mode 100755 index 36c8c5df1a..0000000000 --- a/target/linux/brcm2708/base-files/etc/board.d/02_network +++ /dev/null @@ -1,32 +0,0 @@ -#!/bin/sh -# Copyright (C) 2014-2016 OpenWrt.org -# Copyright (C) 2017 LEDE project - -. /lib/functions/uci-defaults.sh -. /lib/functions.sh -. /lib/functions/system.sh - -board_config_update - -board=$(board_name) - -case "$board" in -raspberrypi,model-b |\ -raspberrypi,model-b-plus |\ -raspberrypi,model-b-rev2 |\ -raspberrypi,2-model-b |\ -raspberrypi,2-model-b-rev2 |\ -raspberrypi,3-model-b |\ -raspberrypi,3-model-b-plus |\ -raspberrypi,4-model-b) - ucidef_set_interface_lan "eth0" - ;; - -raspberrypi,model-zero-w) - ucidef_set_interface_lan "wlan0" - ;; -esac - -board_config_flush - -exit 0 diff --git a/target/linux/brcm2708/base-files/etc/diag.sh b/target/linux/brcm2708/base-files/etc/diag.sh deleted file mode 100644 index ce0f591517..0000000000 --- a/target/linux/brcm2708/base-files/etc/diag.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# Copyright (C) 2015-2016 OpenWrt.org -# Copyright (C) 2017 LEDE project - -. /lib/functions.sh -. /lib/functions/leds.sh - -set_state() { - case "$(board_name)" in - raspberrypi,2-model-b |\ - raspberrypi,model-b-plus) - status_led="led1" - ;; - raspberrypi,model-b |\ - raspberrypi,model-zero |\ - raspberrypi,model-zero-w) - status_led="led0" - ;; - esac - - case "$1" in - preinit) - status_led_blink_preinit - ;; - failsafe) - status_led_blink_failsafe - ;; - preinit_regular) - status_led_blink_preinit_regular - ;; - done) - status_led_on - ;; - esac -} diff --git a/target/linux/brcm2708/base-files/etc/inittab b/target/linux/brcm2708/base-files/etc/inittab deleted file mode 100644 index b944a93ada..0000000000 --- a/target/linux/brcm2708/base-files/etc/inittab +++ /dev/null @@ -1,4 +0,0 @@ -::sysinit:/etc/init.d/rcS S boot -::shutdown:/etc/init.d/rcS K shutdown -::askconsole:/usr/libexec/login.sh -tty1::askfirst:/usr/libexec/login.sh |