Root/
| 1 | #!/bin/sh /etc/rc.common |
| 2 | # |
| 3 | # Copyright (C) 2009 OpenWrt.org |
| 4 | # |
| 5 | |
| 6 | START=05 |
| 7 | |
| 8 | start() { |
| 9 | . /lib/ar71xx.sh |
| 10 | |
| 11 | local board=$(ar71xx_board_name) |
| 12 | |
| 13 | [ ! -d /etc/defconfig/$board ] && board="generic" |
| 14 | |
| 15 | for f in $( ls /etc/defconfig/$board ); do |
| 16 | if [ ! -e /etc/config/$f ]; then |
| 17 | cp /etc/defconfig/$board/$f /etc/config/ |
| 18 | fi |
| 19 | done |
| 20 | } |
| 21 |
