mirror of
https://github.com/openwrt/openwrt.git
synced 2024-11-23 18:05:20 +08:00
treewide: remove execute bit and shebang from board.d files
So far, board.d files were having execute bit set and contained a shebang. However, they are just sourced in board_detect, with an apparantly unnecessary check for execute permission beforehand. Replace this check by one for existance and make the board.d files "normal" files, as would be expected in /etc anyway. Note: This removes an apparantly unused '#!/bin/sh /etc/rc.common' in target/linux/bcm47xx/base-files/etc/board.d/01_network Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
This commit is contained in:
parent
b021642cac
commit
85b1f4d8ca
@ -6,7 +6,7 @@ CFG=$1
|
||||
|
||||
[ -d "/etc/board.d/" -a ! -s "$CFG" ] && {
|
||||
for a in $(ls /etc/board.d/*); do
|
||||
[ -x $a ] || continue;
|
||||
[ -s $a ] || continue;
|
||||
$(. $a)
|
||||
done
|
||||
}
|
||||
|
1
package/base-files/files/etc/board.d/99-default_network
Executable file → Normal file
1
package/base-files/files/etc/board.d/99-default_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2013-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/apm821xx/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/apm821xx/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/apm821xx/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/apm821xx/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/system.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/arc770/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/arc770/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/archs38/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/archs38/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2016 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/armvirt/base-files/etc/board.d/00_model
Executable file → Normal file
1
target/linux/armvirt/base-files/etc/board.d/00_model
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
# Copyright (C) 2016 Yousong Zhou <yszhou4tech@gmail.com>
|
||||
|
||||
|
1
target/linux/at91/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/at91/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2014-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/ath25/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ath25/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Copyright 2012-2015 OpenWrt.org
|
||||
#
|
||||
|
||||
|
1
target/linux/ath25/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ath25/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ath79/generic/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ath79/generic/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ath79/generic/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ath79/generic/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/system.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ath79/generic/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
1
target/linux/ath79/generic/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2018 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/ath79/mikrotik/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ath79/mikrotik/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ath79/mikrotik/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ath79/mikrotik/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/system.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ath79/nand/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ath79/nand/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ath79/nand/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ath79/nand/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/system.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ath79/tiny/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ath79/tiny/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ath79/tiny/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ath79/tiny/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/system.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/bcm27xx/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/bcm27xx/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2014-2016 OpenWrt.org
|
||||
# Copyright (C) 2017 LEDE project
|
||||
|
||||
|
1
target/linux/bcm47xx/base-files/etc/board.d/01_network
Executable file → Normal file
1
target/linux/bcm47xx/base-files/etc/board.d/01_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2006-2015 OpenWrt.org
|
||||
|
||||
. /lib/functions/system.sh
|
||||
|
1
target/linux/bcm4908/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/bcm4908/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0 OR BSD-2-Clause
|
||||
|
||||
. /lib/functions/system.sh
|
||||
|
1
target/linux/bcm53xx/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/bcm53xx/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/bcm53xx/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/bcm53xx/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/bcm63xx/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/bcm63xx/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2013-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/bcm63xx/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/bcm63xx/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2012-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/bmips/generic/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/bmips/generic/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
|
1
target/linux/bmips/nand/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/bmips/nand/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
|
1
target/linux/gemini/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/gemini/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/imx6/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/imx6/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2013-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/ipq40xx/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ipq40xx/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/ipq40xx/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ipq40xx/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (c) 2015 The Linux Foundation. All rights reserved.
|
||||
# Copyright (c) 2011-2015 OpenWrt.org
|
||||
|
1
target/linux/ipq40xx/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
1
target/linux/ipq40xx/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ipq806x/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ipq806x/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/ipq806x/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ipq806x/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (c) 2015 The Linux Foundation. All rights reserved.
|
||||
# Copyright (c) 2011-2015 OpenWrt.org
|
||||
|
1
target/linux/kirkwood/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/kirkwood/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2012-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/kirkwood/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/kirkwood/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2012-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/kirkwood/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
1
target/linux/kirkwood/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/kirkwood/base-files/etc/board.d/05_compat-version
Executable file → Normal file
1
target/linux/kirkwood/base-files/etc/board.d/05_compat-version
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2020 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/ase/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/lantiq/ase/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/ase/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/lantiq/ase/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/falcon/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/lantiq/falcon/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/xrx200/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/lantiq/xrx200/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/xrx200/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/lantiq/xrx200/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/xway/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/lantiq/xway/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/xway/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/lantiq/xway/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/xway_legacy/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/lantiq/xway_legacy/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/lantiq/xway_legacy/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/lantiq/xway_legacy/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2011-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/layerscape/base-files/etc/board.d/01_led
Executable file → Normal file
1
target/linux/layerscape/base-files/etc/board.d/01_led
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/layerscape/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/layerscape/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/system.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/layerscape/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
1
target/linux/layerscape/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/malta/base-files/etc/board.d/00_model
Executable file → Normal file
1
target/linux/malta/base-files/etc/board.d/00_model
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/malta/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/malta/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/mediatek/mt7622/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mediatek/mt7622/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/mediatek/mt7623/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mediatek/mt7623/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/mediatek/mt7629/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mediatek/mt7629/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/mpc85xx/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mpc85xx/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2014-2015 OpenWrt.org
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/mvebu/cortexa53/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/mvebu/cortexa53/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/mvebu/cortexa53/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mvebu/cortexa53/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2014-2016 OpenWrt.org
|
||||
# Copyright (C) 2016 LEDE-Project.org
|
||||
|
1
target/linux/mvebu/cortexa72/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mvebu/cortexa72/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2014-2016 OpenWrt.org
|
||||
# Copyright (C) 2016 LEDE-Project.org
|
||||
|
1
target/linux/mvebu/cortexa9/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/mvebu/cortexa9/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2014-2016 OpenWrt.org
|
||||
# Copyright (C) 2016 LEDE-Project.org
|
||||
|
1
target/linux/mvebu/cortexa9/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mvebu/cortexa9/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2014-2016 OpenWrt.org
|
||||
# Copyright (C) 2016 LEDE-Project.org
|
||||
|
1
target/linux/mvebu/cortexa9/base-files/etc/board.d/05_compat-version
Executable file → Normal file
1
target/linux/mvebu/cortexa9/base-files/etc/board.d/05_compat-version
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2020 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/mxs/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/mxs/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2013-2015 OpenWrt.org
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/octeon/base-files/etc/board.d/01_network
Executable file → Normal file
1
target/linux/octeon/base-files/etc/board.d/01_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2014-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/octeontx/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/octeontx/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2018 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/oxnas/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/oxnas/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
. /lib/functions/system.sh
|
||||
|
1
target/linux/pistachio/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/pistachio/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# SPDX-License-Identifier: GPL-2.0-only
|
||||
#
|
||||
# Copyright (C) 2017 OpenWrt.org
|
||||
|
1
target/linux/ramips/mt7620/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ramips/mt7620/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/mt7620/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ramips/mt7620/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/mt7620/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
1
target/linux/ramips/mt7620/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ramips/mt7621/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ramips/mt7621/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/mt7621/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ramips/mt7621/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/mt7621/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
1
target/linux/ramips/mt7621/base-files/etc/board.d/03_gpio_switches
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/ramips/mt7621/base-files/etc/board.d/05_compat-version
Executable file → Normal file
1
target/linux/ramips/mt7621/base-files/etc/board.d/05_compat-version
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2020 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/ramips/mt76x8/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ramips/mt76x8/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/mt76x8/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ramips/mt76x8/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/rt288x/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ramips/rt288x/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/rt288x/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ramips/rt288x/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/rt305x/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ramips/rt305x/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/rt305x/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ramips/rt305x/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/rt3883/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/ramips/rt3883/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/ramips/rt3883/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/ramips/rt3883/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/realtek/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/realtek/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/realtek/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/realtek/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/rockchip/armv8/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/rockchip/armv8/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/leds.sh
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
1
target/linux/rockchip/armv8/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/rockchip/armv8/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
. /lib/functions/system.sh
|
||||
|
1
target/linux/sunxi/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/sunxi/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
||||
|
1
target/linux/sunxi/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/sunxi/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright (C) 2013-2015 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/x86/base-files/etc/board.d/01_leds
Executable file → Normal file
1
target/linux/x86/base-files/etc/board.d/01_leds
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright © 2017 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/x86/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/x86/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# Copyright © 2017 OpenWrt.org
|
||||
#
|
||||
|
1
target/linux/zynq/base-files/etc/board.d/02_network
Executable file → Normal file
1
target/linux/zynq/base-files/etc/board.d/02_network
Executable file → Normal file
@ -1,4 +1,3 @@
|
||||
#!/bin/sh
|
||||
# Copyright (C) 2015 OpenWrt.org
|
||||
|
||||
. /lib/functions/uci-defaults.sh
|
||||
|
Loading…
Reference in New Issue
Block a user