Root/target/linux/ar71xx/base-files/etc/init.d/defconfig

1#!/bin/sh /etc/rc.common
2#
3# Copyright (C) 2009 OpenWrt.org
4#
5
6START=05
7
8start() {
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

Archive Download this file



interactive