aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/bcm53xx
diff options
context:
space:
mode:
authorArınç ÜNAL <arinc.unal@arinc9.com>2022-05-04 11:34:29 +0300
committerRafał Miłecki <rafal@milecki.pl>2022-06-07 16:18:20 +0200
commit638220bfee001cda74225befb587a558cf7d9b9c (patch)
tree3fb6400d6c94bc42635766c0ca8a46c5b1e0dec9 /target/linux/bcm53xx
parentbee8612d4f3ef4323bc15a4fe8ddfddadf5ab367 (diff)
downloadupstream-638220bfee001cda74225befb587a558cf7d9b9c.tar.gz
upstream-638220bfee001cda74225befb587a558cf7d9b9c.tar.bz2
upstream-638220bfee001cda74225befb587a558cf7d9b9c.zip
packages: nvram: add NVRAM quirks for bcm53xx target
Add NVRAM quirks script for the bcm53xx target. Split NVRAM quirks for the bcm47xx and bcm53xx targets. Move clear partialboot NVRAM quirk for Linksys EA9500 here. Add set wireless LED behaviour quirk for Asus RT-AC88U. Use boot() instead of start() as nvram commands are meant to be executed only once, at boot. Signed-off-by: Arınç ÜNAL <arinc.unal@arinc9.com> (cherry picked from commit f4e219fd5e6cfa33d234dad134fb105cc1620f54)
Diffstat (limited to 'target/linux/bcm53xx')
-rwxr-xr-xtarget/linux/bcm53xx/base-files/etc/init.d/clear_partialboot13
1 files changed, 0 insertions, 13 deletions
diff --git a/target/linux/bcm53xx/base-files/etc/init.d/clear_partialboot b/target/linux/bcm53xx/base-files/etc/init.d/clear_partialboot
deleted file mode 100755
index b3eddf4af0..0000000000
--- a/target/linux/bcm53xx/base-files/etc/init.d/clear_partialboot
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/bin/sh /etc/rc.common
-
-START=97
-boot() {
- . /lib/functions.sh
-
- case $(board_name) in
- linksys,panamera)
- # clear partialboots
- nvram set partialboots=0 && nvram commit
- ;;
- esac
-}