OpenWrt – Blame information for rev 4

Subversion Repositories:
Rev:
Rev Author Line No. Line
4 office 1 #!/bin/sh
2  
3 . /lib/functions/uci-defaults.sh
4  
5 board_config_update
6  
7 board=$(board_name)
8  
9 case "$board" in
10 compex,wpj428)
11 ucidef_add_gpio_switch "sim_card_select" "SIM card select" "3" "0"
12 ;;
13 esac
14  
15 board_config_flush
16  
17 exit 0