diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-01-18 02:21:13 +0100 |
---|---|---|
committer | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2020-01-21 14:24:49 +0100 |
commit | 1fa04b5d9fb1cba56a8597d6da9e1d52b8030f6b (patch) | |
tree | da02f4bb267128497f1ad7e3c755c8685d8005d1 /target/linux/mvebu/base-files/etc/init.d | |
parent | e93626f1f47ec6c1995067c9ed3798ebd468cda3 (diff) | |
download | upstream-1fa04b5d9fb1cba56a8597d6da9e1d52b8030f6b.tar.gz upstream-1fa04b5d9fb1cba56a8597d6da9e1d52b8030f6b.tar.bz2 upstream-1fa04b5d9fb1cba56a8597d6da9e1d52b8030f6b.zip |
mvebu: split base-files across subtargets
For the mvebu target in particular, there is a lot of files in
base-files that are only relevant for one subtarget. Improve
overview and reduce size per subtarget by moving/splitting
base-files depending on the subtarget they belong to.
While at it, consolidate 01_leds by using the model part of
the board name as variable.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
Acked-by: Tomasz Maciej Nowak <tomek_n@o2.pl>
Diffstat (limited to 'target/linux/mvebu/base-files/etc/init.d')
-rwxr-xr-x | target/linux/mvebu/base-files/etc/init.d/bootcount | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/mvebu/base-files/etc/init.d/bootcount b/target/linux/mvebu/base-files/etc/init.d/bootcount deleted file mode 100755 index dd2266bdc8..0000000000 --- a/target/linux/mvebu/base-files/etc/init.d/bootcount +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh /etc/rc.common - -START=99 - -boot() { - case $(board_name) in - linksys,caiman |\ - linksys,cobra |\ - linksys,mamba |\ - linksys,rango |\ - linksys,shelby |\ - linksys,venom) - mtd resetbc s_env || true - ;; - esac -} |