From 1c321237c29202e0ed5c168c625cc89fcabb609c Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Mon, 11 Nov 2019 14:48:17 +0100 Subject: ramips: split further base-files across subtargets As started in 19724e28c81e ("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 --- .../ramips/mt76x8/base-files/etc/init.d/bootcount | 11 +++++++++++ .../base-files/etc/uci-defaults/04_led_migration | 22 ++++++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100755 target/linux/ramips/mt76x8/base-files/etc/init.d/bootcount create mode 100644 target/linux/ramips/mt76x8/base-files/etc/uci-defaults/04_led_migration (limited to 'target/linux/ramips/mt76x8/base-files') diff --git a/target/linux/ramips/mt76x8/base-files/etc/init.d/bootcount b/target/linux/ramips/mt76x8/base-files/etc/init.d/bootcount new file mode 100755 index 0000000000..0d64deb9e0 --- /dev/null +++ b/target/linux/ramips/mt76x8/base-files/etc/init.d/bootcount @@ -0,0 +1,11 @@ +#!/bin/sh /etc/rc.common + +START=99 + +boot() { + case $(board_name) in + xiaomi,miwifi-nano) + fw_setenv flag_boot_success 1 + ;; + esac +} diff --git a/target/linux/ramips/mt76x8/base-files/etc/uci-defaults/04_led_migration b/target/linux/ramips/mt76x8/base-files/etc/uci-defaults/04_led_migration new file mode 100644 index 0000000000..3f9f615c10 --- /dev/null +++ b/target/linux/ramips/mt76x8/base-files/etc/uci-defaults/04_led_migration @@ -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 -- cgit v1.2.3