mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 20:34:05 +02:00
a6c855e6e5
Add default config file for net4801 and 4826 and initial script to copy config file like it is done for other platforms. Patch from: kentarou matsuyama <matsuyama@thinktube.com> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@25103 3c298f89-4303-0410-b956-a3cf2f4a3e73
21 lines
330 B
Bash
Executable File
21 lines
330 B
Bash
Executable File
#!/bin/sh /etc/rc.common
|
|
#
|
|
# Copyright (C) 2010 Thinktube Inc.
|
|
#
|
|
|
|
START=05
|
|
|
|
start() {
|
|
. /lib/soekris.sh
|
|
|
|
local board=$(net48xx_board_name)
|
|
|
|
[ ! -d /etc/defconfig/$board ] && board="net4826"
|
|
|
|
for f in $( ls /etc/defconfig/$board ); do
|
|
if [ ! -e /etc/config/$f ]; then
|
|
cp /etc/defconfig/$board/$f /etc/config/
|
|
fi
|
|
done
|
|
}
|