Skip to content

Commit

Permalink
ramips: split further base-files across subtargets
Browse files Browse the repository at this point in the history
As started in 19724e2 ("ramips: split base-files into
subtargets"), this moves some smaller left-over files to the
appropriate base-files folder of their subtarget:

- /etc/init.d/bootcount
- /etc/uci-defaults/04_led_migration

Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
  • Loading branch information
adschm committed Nov 11, 2019
1 parent 5dc5354 commit 1c32123
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 21 deletions.
Expand Up @@ -6,12 +6,6 @@
board=$(board_name)

case "$board" in
fon,fonera-20n)
migrate_leds "^fonera20n:=fonera-20n:"
;;
intenso,memory2move)
migrate_leds "^m2m:=memory2move:"
;;
lenovo,newifi-y1)
migrate_leds "^y1:=newifi-y1:"
;;
Expand All @@ -21,30 +15,18 @@ lenovo,newifi-y1s)
netgear,wn3000rp-v3)
migrate_leds "^wn3000rpv3:=wn3000rp-v3:"
;;
netgear,wndr3700-v5)
migrate_leds "^wndr3700v5:=wndr3700-v5:"
;;
tplink,archer-c2-v1)
migrate_leds "^c2-v1:=archer-c2-v1:"
;;
tplink,archer-c20-v1)
migrate_leds "^c20-v1:=archer-c20-v1:"
;;
tplink,archer-c20-v4)
migrate_leds "^c20-v4:=archer-c20-v4:"
;;
tplink,archer-c20i)
migrate_leds "^c20i:=archer-c20i:"
;;
tplink,archer-c50-v1)
migrate_leds "^c50:=archer-c50-v1:"
;;
tplink,archer-c50-v3)
migrate_leds "^c50-v3:=archer-c50-v3:"
;;
tplink,archer-c50-v4)
migrate_leds "^c50-v4:=archer-c50-v4:"
;;
tplink,archer-mr200)
migrate_leds "^mr200:=archer-mr200:"
;;
Expand Down
11 changes: 11 additions & 0 deletions target/linux/ramips/mt7621/base-files/etc/init.d/bootcount
@@ -0,0 +1,11 @@
#!/bin/sh /etc/rc.common

START=99

boot() {
case $(board_name) in
samknows,whitebox-v8)
fw_setenv bootcount 0
;;
esac
}
@@ -0,0 +1,16 @@
#!/bin/sh

. /lib/functions.sh
. /lib/functions/migrations.sh

board=$(board_name)

case "$board" in
netgear,wndr3700-v5)
migrate_leds "^wndr3700v5:=wndr3700-v5:"
;;
esac

migrations_apply system

exit 0
Expand Up @@ -4,9 +4,6 @@ START=99

boot() {
case $(board_name) in
samknows,whitebox-v8)
fw_setenv bootcount 0
;;
xiaomi,miwifi-nano)
fw_setenv flag_boot_success 1
;;
Expand Down
@@ -0,0 +1,22 @@
#!/bin/sh

. /lib/functions.sh
. /lib/functions/migrations.sh

board=$(board_name)

case "$board" in
tplink,archer-c20-v4)
migrate_leds "^c20-v4:=archer-c20-v4:"
;;
tplink,archer-c50-v3)
migrate_leds "^c50-v3:=archer-c50-v3:"
;;
tplink,archer-c50-v4)
migrate_leds "^c50-v4:=archer-c50-v4:"
;;
esac

migrations_apply system

exit 0
@@ -0,0 +1,19 @@
#!/bin/sh

. /lib/functions.sh
. /lib/functions/migrations.sh

board=$(board_name)

case "$board" in
fon,fonera-20n)
migrate_leds "^fonera20n:=fonera-20n:"
;;
intenso,memory2move)
migrate_leds "^m2m:=memory2move:"
;;
esac

migrations_apply system

exit 0

0 comments on commit 1c32123

Please sign in to comment.