summaryrefslogtreecommitdiffstats
path: root/target/linux/kirkwood/base-files/etc/board.d
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/kirkwood/base-files/etc/board.d')
-rwxr-xr-xtarget/linux/kirkwood/base-files/etc/board.d/02_network3
-rwxr-xr-xtarget/linux/kirkwood/base-files/etc/board.d/03_gpio_switches18
2 files changed, 21 insertions, 0 deletions
diff --git a/target/linux/kirkwood/base-files/etc/board.d/02_network b/target/linux/kirkwood/base-files/etc/board.d/02_network
index a86c57117d..658ce13346 100755
--- a/target/linux/kirkwood/base-files/etc/board.d/02_network
+++ b/target/linux/kirkwood/base-files/etc/board.d/02_network
@@ -11,6 +11,9 @@ board_config_update
board=$(board_name)
case "$board" in
+"checkpoint,l-50")
+ ucidef_set_interfaces_lan_wan "lan1 lan2 lan3 lan4 lan5 lan6 lan7 lan8 dmz" "eth0"
+ ;;
"cisco,on100")
ucidef_set_interface_lan "eth0 eth1"
;;
diff --git a/target/linux/kirkwood/base-files/etc/board.d/03_gpio_switches b/target/linux/kirkwood/base-files/etc/board.d/03_gpio_switches
new file mode 100755
index 0000000000..046f8d4d20
--- /dev/null
+++ b/target/linux/kirkwood/base-files/etc/board.d/03_gpio_switches
@@ -0,0 +1,18 @@
+#!/bin/sh
+
+. /lib/functions/uci-defaults.sh
+
+board_config_update
+
+board=$(board_name)
+
+case "$board" in
+checkpoint,l-50)
+ ucidef_add_gpio_switch "mpcie-rst" "mPCIE Card reset" "502" "1"
+ ucidef_add_gpio_switch "exp-card-rst" "Express Card reset" "497" "1"
+ ;;
+esac
+
+board_config_flush
+
+exit 0