diff options
author | Christian Lamparter <chunkeey@gmail.com> | 2022-06-11 01:08:58 +0200 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2022-06-25 00:05:21 +0200 |
commit | d929abbbdeb7e035b1fb96f0b8c85bb951c1829d (patch) | |
tree | 52586c4326d4fe6173957a1f3b1e4f4693507b89 /target/linux | |
parent | c1868ef656cf7241eb34bd32d6792a6b8d0802bc (diff) | |
download | upstream-d929abbbdeb7e035b1fb96f0b8c85bb951c1829d.tar.gz upstream-d929abbbdeb7e035b1fb96f0b8c85bb951c1829d.tar.bz2 upstream-d929abbbdeb7e035b1fb96f0b8c85bb951c1829d.zip |
bcm53xx: remove 07_set_preinit_iface_bcm53xx
with the switch to DSA setup, the switch gets correctly
programmed via the device-tree now. This hack is no
longer necessary.
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
(cherry picked from commit 554ca44730731da6fddc51e1d3027c5e666a7d0d)
Diffstat (limited to 'target/linux')
-rw-r--r-- | target/linux/bcm53xx/base-files/lib/preinit/07_set_preinit_iface_bcm53xx | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/target/linux/bcm53xx/base-files/lib/preinit/07_set_preinit_iface_bcm53xx b/target/linux/bcm53xx/base-files/lib/preinit/07_set_preinit_iface_bcm53xx deleted file mode 100644 index 9e7c4b821e..0000000000 --- a/target/linux/bcm53xx/base-files/lib/preinit/07_set_preinit_iface_bcm53xx +++ /dev/null @@ -1,14 +0,0 @@ -set_preinit_iface() { - . /lib/functions.sh - - case $(board_name) in - meraki,mr32) - # switch needs to be out of the vlan mode. - swconfig dev switch0 set reset 1 - swconfig dev switch0 set enable_vlan 0 - swconfig dev switch0 set apply 1 - ;; - esac -} - -boot_hook_add preinit_main set_preinit_iface |