summaryrefslogtreecommitdiff
path: root/openwrt/package
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-06-27 00:36:13 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-06-27 00:36:13 +0000
commitf804d0ea1d131152acccd2a108c231fe07c4196c (patch)
tree9e645cd7f30ba5db61ca860cb8a1d9626dfc152a /openwrt/package
parent3e639bb44e72036b1b16f07025a7997fa561124d (diff)
downloadmtk-20170518-f804d0ea1d131152acccd2a108c231fe07c4196c.zip
mtk-20170518-f804d0ea1d131152acccd2a108c231fe07c4196c.tar.gz
mtk-20170518-f804d0ea1d131152acccd2a108c231fe07c4196c.tar.bz2
add copyright headers to base-files scripts and config files
SVN-Revision: 4090
Diffstat (limited to 'openwrt/package')
-rwxr-xr-xopenwrt/package/base-files/ar7-2.4/bin/firstboot2
-rw-r--r--openwrt/package/base-files/aruba-2.6/etc/config/network2
-rw-r--r--openwrt/package/base-files/au1000-2.6/etc/config/network1
-rwxr-xr-xopenwrt/package/base-files/au1000-2.6/sbin/mount_root2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.4/bin/firstboot2
-rw-r--r--openwrt/package/base-files/brcm-2.4/etc/config/wireless2
-rw-r--r--openwrt/package/base-files/brcm-2.4/etc/hotplug.d/net/09-net2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.4/etc/init.d/S05netconfig2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.4/etc/preinit2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.4/sbin/mount_root2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.6/bin/firstboot2
-rw-r--r--openwrt/package/base-files/brcm-2.6/etc/hotplug.d/net/09-net2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.6/etc/init.d/S05netconfig2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.6/etc/preinit2
-rwxr-xr-xopenwrt/package/base-files/brcm-2.6/sbin/mount_root2
-rwxr-xr-xopenwrt/package/base-files/default/bin/ipcalc1
-rwxr-xr-xopenwrt/package/base-files/default/bin/login2
-rwxr-xr-xopenwrt/package/base-files/default/etc/functions.sh2
-rw-r--r--openwrt/package/base-files/default/etc/hotplug.d/net/10-net2
-rw-r--r--openwrt/package/base-files/default/etc/hotplug.d/usb/01-mount3
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S10boot2
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S50httpd2
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S50telnet2
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S60cron2
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/S98done2
-rwxr-xr-xopenwrt/package/base-files/default/etc/init.d/rcS2
-rw-r--r--openwrt/package/base-files/default/etc/nvram.sh2
-rwxr-xr-xopenwrt/package/base-files/default/sbin/hotplug1
-rwxr-xr-xopenwrt/package/base-files/default/sbin/ifdown2
-rwxr-xr-xopenwrt/package/base-files/default/sbin/ifup2
-rwxr-xr-xopenwrt/package/base-files/default/sbin/mount_root2
-rwxr-xr-xopenwrt/package/base-files/default/sbin/wifi2
-rw-r--r--openwrt/package/base-files/default/usr/lib/common.awk2
-rw-r--r--openwrt/package/base-files/default/usr/lib/parse-config.awk2
-rw-r--r--openwrt/package/base-files/rb532-2.6/etc/config/network1
-rw-r--r--openwrt/package/base-files/sibyte-2.6/etc/config/network1
-rw-r--r--openwrt/package/base-files/sibyte-2.6/etc/inittab2
-rw-r--r--openwrt/package/base-files/x86-2.4/etc/config/network1
-rw-r--r--openwrt/package/base-files/x86-2.6/etc/config/network1
-rw-r--r--openwrt/package/base-files/xscale-2.6/etc/config/network1
40 files changed, 70 insertions, 3 deletions
diff --git a/openwrt/package/base-files/ar7-2.4/bin/firstboot b/openwrt/package/base-files/ar7-2.4/bin/firstboot
index 955423b..774bbc7 100755
--- a/openwrt/package/base-files/ar7-2.4/bin/firstboot
+++ b/openwrt/package/base-files/ar7-2.4/bin/firstboot
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id$
+# Copyright (C) 2006 OpenWrt.org
rom=$(awk '/squashfs/ {print $2}' /proc/mounts)
jffs=$(awk '/jffs2/ {print $2}' /proc/mounts)
diff --git a/openwrt/package/base-files/aruba-2.6/etc/config/network b/openwrt/package/base-files/aruba-2.6/etc/config/network
index f60332c..6579779 100644
--- a/openwrt/package/base-files/aruba-2.6/etc/config/network
+++ b/openwrt/package/base-files/aruba-2.6/etc/config/network
@@ -1,4 +1,6 @@
# Network configuration file
+# Copyright (C) 2006 OpenWrt.org
+
## LAN configuration
lan_ifname="eth0"
diff --git a/openwrt/package/base-files/au1000-2.6/etc/config/network b/openwrt/package/base-files/au1000-2.6/etc/config/network
index 2cc9e26..576677b 100644
--- a/openwrt/package/base-files/au1000-2.6/etc/config/network
+++ b/openwrt/package/base-files/au1000-2.6/etc/config/network
@@ -1,4 +1,5 @@
# Network configuration file
+# Copyright (C) 2006 OpenWrt.org
## LAN configuration
lan_ifname="br0"
diff --git a/openwrt/package/base-files/au1000-2.6/sbin/mount_root b/openwrt/package/base-files/au1000-2.6/sbin/mount_root
index bc4165c..718394c 100755
--- a/openwrt/package/base-files/au1000-2.6/sbin/mount_root
+++ b/openwrt/package/base-files/au1000-2.6/sbin/mount_root
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
mount none /proc -t proc
size=$(awk '/Mem:/ {l=5242880;print((s=$2/2)<l)?$2-l:s}' /proc/meminfo)
mount none /tmp -t tmpfs -o size=$size
diff --git a/openwrt/package/base-files/brcm-2.4/bin/firstboot b/openwrt/package/base-files/brcm-2.4/bin/firstboot
index 2818978..d37ce4f 100755
--- a/openwrt/package/base-files/brcm-2.4/bin/firstboot
+++ b/openwrt/package/base-files/brcm-2.4/bin/firstboot
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id$
+# Copyright (C) 2006 OpenWrt.org
rom=$(awk '/squashfs/ {print $2}' /proc/mounts)
jffs=$(awk '/jffs2/ {print $2}' /proc/mounts)
diff --git a/openwrt/package/base-files/brcm-2.4/etc/config/wireless b/openwrt/package/base-files/brcm-2.4/etc/config/wireless
index a7e6743..9dc4945 100644
--- a/openwrt/package/base-files/brcm-2.4/etc/config/wireless
+++ b/openwrt/package/base-files/brcm-2.4/etc/config/wireless
@@ -1,3 +1,5 @@
+# Copyright (C) 2006 OpenWrt.org
+
config wifi-device wl0
option type broadcom
option channel 5
diff --git a/openwrt/package/base-files/brcm-2.4/etc/hotplug.d/net/09-net b/openwrt/package/base-files/brcm-2.4/etc/hotplug.d/net/09-net
index 9dd7796..48abdf4 100644
--- a/openwrt/package/base-files/brcm-2.4/etc/hotplug.d/net/09-net
+++ b/openwrt/package/base-files/brcm-2.4/etc/hotplug.d/net/09-net
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
setup_wl()
{
[ -f /proc/net/wl0 ] && {
diff --git a/openwrt/package/base-files/brcm-2.4/etc/init.d/S05netconfig b/openwrt/package/base-files/brcm-2.4/etc/init.d/S05netconfig
index 6a626f5..0f53c0c 100755
--- a/openwrt/package/base-files/brcm-2.4/etc/init.d/S05netconfig
+++ b/openwrt/package/base-files/brcm-2.4/etc/init.d/S05netconfig
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
[ -e /etc/config/network ] && exit 0
mkdir -p /etc/config
diff --git a/openwrt/package/base-files/brcm-2.4/etc/preinit b/openwrt/package/base-files/brcm-2.4/etc/preinit
index 5b676ca..fb13e10 100755
--- a/openwrt/package/base-files/brcm-2.4/etc/preinit
+++ b/openwrt/package/base-files/brcm-2.4/etc/preinit
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
mount none /proc -t proc
diff --git a/openwrt/package/base-files/brcm-2.4/sbin/mount_root b/openwrt/package/base-files/brcm-2.4/sbin/mount_root
index 8edac78..ec82cd4 100755
--- a/openwrt/package/base-files/brcm-2.4/sbin/mount_root
+++ b/openwrt/package/base-files/brcm-2.4/sbin/mount_root
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
is_dirty() {
grep Broadcom /proc/cpuinfo >&- || return 1
OFFSET="$(($(hexdump -v /dev/mtdblock/1 -s 20 -n 2 -e '"%d"')-1))"
diff --git a/openwrt/package/base-files/brcm-2.6/bin/firstboot b/openwrt/package/base-files/brcm-2.6/bin/firstboot
index 2818978..d37ce4f 100755
--- a/openwrt/package/base-files/brcm-2.6/bin/firstboot
+++ b/openwrt/package/base-files/brcm-2.6/bin/firstboot
@@ -1,5 +1,5 @@
#!/bin/sh
-# $Id$
+# Copyright (C) 2006 OpenWrt.org
rom=$(awk '/squashfs/ {print $2}' /proc/mounts)
jffs=$(awk '/jffs2/ {print $2}' /proc/mounts)
diff --git a/openwrt/package/base-files/brcm-2.6/etc/hotplug.d/net/09-net b/openwrt/package/base-files/brcm-2.6/etc/hotplug.d/net/09-net
index 8bbf604..90a92bd 100644
--- a/openwrt/package/base-files/brcm-2.6/etc/hotplug.d/net/09-net
+++ b/openwrt/package/base-files/brcm-2.6/etc/hotplug.d/net/09-net
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
setup_eth()
{
[ -d /proc/switch ] || {
diff --git a/openwrt/package/base-files/brcm-2.6/etc/init.d/S05netconfig b/openwrt/package/base-files/brcm-2.6/etc/init.d/S05netconfig
index 6a626f5..0f53c0c 100755
--- a/openwrt/package/base-files/brcm-2.6/etc/init.d/S05netconfig
+++ b/openwrt/package/base-files/brcm-2.6/etc/init.d/S05netconfig
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
[ -e /etc/config/network ] && exit 0
mkdir -p /etc/config
diff --git a/openwrt/package/base-files/brcm-2.6/etc/preinit b/openwrt/package/base-files/brcm-2.6/etc/preinit
index 5b676ca..fb13e10 100755
--- a/openwrt/package/base-files/brcm-2.6/etc/preinit
+++ b/openwrt/package/base-files/brcm-2.6/etc/preinit
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
export PATH=/bin:/sbin:/usr/bin:/usr/sbin
mount none /proc -t proc
diff --git a/openwrt/package/base-files/brcm-2.6/sbin/mount_root b/openwrt/package/base-files/brcm-2.6/sbin/mount_root
index a3ada58..e3bdd36 100755
--- a/openwrt/package/base-files/brcm-2.6/sbin/mount_root
+++ b/openwrt/package/base-files/brcm-2.6/sbin/mount_root
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
is_dirty() {
grep Broadcom /proc/cpuinfo >&- || return 1
OFFSET="$(($(hexdump -v /dev/mtdblock/1 -s 20 -n 2 -e '"%d"')-1))"
diff --git a/openwrt/package/base-files/default/bin/ipcalc b/openwrt/package/base-files/default/bin/ipcalc
index 318980e..23af6a0 100755
--- a/openwrt/package/base-files/default/bin/ipcalc
+++ b/openwrt/package/base-files/default/bin/ipcalc
@@ -1,4 +1,5 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
awk -f /usr/lib/common.awk -f - $* <<EOF
BEGIN {
diff --git a/openwrt/package/base-files/default/bin/login b/openwrt/package/base-files/default/bin/login
index 8f92817..ff5d366 100755
--- a/openwrt/package/base-files/default/bin/login
+++ b/openwrt/package/base-files/default/bin/login
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
grep '^root:[^!]' /etc/passwd >&- 2>&-
[ "$?" = "0" -a -z "$FAILSAFE" ] &&
{
diff --git a/openwrt/package/base-files/default/etc/functions.sh b/openwrt/package/base-files/default/etc/functions.sh
index 3010196..a7f7c42 100755
--- a/openwrt/package/base-files/default/etc/functions.sh
+++ b/openwrt/package/base-files/default/etc/functions.sh
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
alias debug=${DEBUG:-:}
# newline
diff --git a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
index b68ec1b..f306ae3 100644
--- a/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
+++ b/openwrt/package/base-files/default/etc/hotplug.d/net/10-net
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
find_name()
{
for ifname in lan wan wifi ${ifnames}; do
diff --git a/openwrt/package/base-files/default/etc/hotplug.d/usb/01-mount b/openwrt/package/base-files/default/etc/hotplug.d/usb/01-mount
index c28ada2..c4d356b0 100644
--- a/openwrt/package/base-files/default/etc/hotplug.d/usb/01-mount
+++ b/openwrt/package/base-files/default/etc/hotplug.d/usb/01-mount
@@ -1,3 +1,6 @@
+#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
mount_storage() {
cd /dev/discs
for dev in disc*; do
diff --git a/openwrt/package/base-files/default/etc/init.d/S10boot b/openwrt/package/base-files/default/etc/init.d/S10boot
index e0d15db..cb5c6ac 100755
--- a/openwrt/package/base-files/default/etc/init.d/S10boot
+++ b/openwrt/package/base-files/default/etc/init.d/S10boot
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
. /etc/functions.sh
[ -f /proc/mounts ] || /sbin/mount_root
diff --git a/openwrt/package/base-files/default/etc/init.d/S50httpd b/openwrt/package/base-files/default/etc/init.d/S50httpd
index a1b883d..d278519 100755
--- a/openwrt/package/base-files/default/etc/init.d/S50httpd
+++ b/openwrt/package/base-files/default/etc/init.d/S50httpd
@@ -1,2 +1,4 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
[ -d /www ] && httpd -p 80 -h /www -r OpenWrt
diff --git a/openwrt/package/base-files/default/etc/init.d/S50telnet b/openwrt/package/base-files/default/etc/init.d/S50telnet
index fb9687c..25242bd 100755
--- a/openwrt/package/base-files/default/etc/init.d/S50telnet
+++ b/openwrt/package/base-files/default/etc/init.d/S50telnet
@@ -1,2 +1,4 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
if awk -F: '/^root:/ && $2 !~ /\!/ {exit 1}' /etc/passwd 2>/dev/null; then telnetd -l /bin/login; fi
diff --git a/openwrt/package/base-files/default/etc/init.d/S60cron b/openwrt/package/base-files/default/etc/init.d/S60cron
index 1752734..6df9b7d 100755
--- a/openwrt/package/base-files/default/etc/init.d/S60cron
+++ b/openwrt/package/base-files/default/etc/init.d/S60cron
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
mkdir -p /var/spool/cron
ln -s /etc/crontabs /var/spool/cron/crontabs
crond -c /etc/crontabs
diff --git a/openwrt/package/base-files/default/etc/init.d/S98done b/openwrt/package/base-files/default/etc/init.d/S98done
index 5d5ab49..a1ea5ad 100755
--- a/openwrt/package/base-files/default/etc/init.d/S98done
+++ b/openwrt/package/base-files/default/etc/init.d/S98done
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
sysctl -p >&-
# automagically run firstboot
diff --git a/openwrt/package/base-files/default/etc/init.d/rcS b/openwrt/package/base-files/default/etc/init.d/rcS
index b38e449..dad989f 100755
--- a/openwrt/package/base-files/default/etc/init.d/rcS
+++ b/openwrt/package/base-files/default/etc/init.d/rcS
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
${FAILSAFE:+exit}
[ -f /etc/config/network ] && . /etc/config/network
diff --git a/openwrt/package/base-files/default/etc/nvram.sh b/openwrt/package/base-files/default/etc/nvram.sh
index 4d39a10..ddbd88b 100644
--- a/openwrt/package/base-files/default/etc/nvram.sh
+++ b/openwrt/package/base-files/default/etc/nvram.sh
@@ -1,4 +1,6 @@
#!/bin/ash
+# Copyright (C) 2006 OpenWrt.org
+
# allow env to override nvram
nvram () {
diff --git a/openwrt/package/base-files/default/sbin/hotplug b/openwrt/package/base-files/default/sbin/hotplug
index 1062993..afe52a4 100755
--- a/openwrt/package/base-files/default/sbin/hotplug
+++ b/openwrt/package/base-files/default/sbin/hotplug
@@ -1,4 +1,5 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
# bypass the normal hotplug path for firmware loading
# would otherwise cause problems with drivers like bcm43xx
diff --git a/openwrt/package/base-files/default/sbin/ifdown b/openwrt/package/base-files/default/sbin/ifdown
index 0d85ca8..50ffee5 100755
--- a/openwrt/package/base-files/default/sbin/ifdown
+++ b/openwrt/package/base-files/default/sbin/ifdown
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
. /etc/config/network
diff --git a/openwrt/package/base-files/default/sbin/ifup b/openwrt/package/base-files/default/sbin/ifup
index a86a767..390f960 100755
--- a/openwrt/package/base-files/default/sbin/ifup
+++ b/openwrt/package/base-files/default/sbin/ifup
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
[ $# = 0 ] && { echo " $0 <group>"; exit; }
. /etc/functions.sh
. /etc/config/network
diff --git a/openwrt/package/base-files/default/sbin/mount_root b/openwrt/package/base-files/default/sbin/mount_root
index 647c253..81660f0 100755
--- a/openwrt/package/base-files/default/sbin/mount_root
+++ b/openwrt/package/base-files/default/sbin/mount_root
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
mount none /proc -t proc
size=$(awk '/Mem:/ {l=5242880;print((s=$2/2)<l)?$2-l:s}' /proc/meminfo)
mount none /tmp -t tmpfs -o size=$size,nosuid,nodev,mode=1777
diff --git a/openwrt/package/base-files/default/sbin/wifi b/openwrt/package/base-files/default/sbin/wifi
index b8b995b..63b2f12 100755
--- a/openwrt/package/base-files/default/sbin/wifi
+++ b/openwrt/package/base-files/default/sbin/wifi
@@ -1,4 +1,6 @@
#!/bin/sh
+# Copyright (C) 2006 OpenWrt.org
+
. /etc/functions.sh
config_get_bool() {
diff --git a/openwrt/package/base-files/default/usr/lib/common.awk b/openwrt/package/base-files/default/usr/lib/common.awk
index 63a8cf2..c5ce680 100644
--- a/openwrt/package/base-files/default/usr/lib/common.awk
+++ b/openwrt/package/base-files/default/usr/lib/common.awk
@@ -1,3 +1,5 @@
+# Copyright (C) 2006 OpenWrt.org
+
function portstr(type, str) {
gsub(/-/, ":", str)
if (insmod_mport != 1) {
diff --git a/openwrt/package/base-files/default/usr/lib/parse-config.awk b/openwrt/package/base-files/default/usr/lib/parse-config.awk
index bde5c00..cf1b09c 100644
--- a/openwrt/package/base-files/default/usr/lib/parse-config.awk
+++ b/openwrt/package/base-files/default/usr/lib/parse-config.awk
@@ -1,3 +1,5 @@
+# Copyright (C) 2006 OpenWrt.org
+
{
line=$0
gsub(/^[ \t]*/, "")
diff --git a/openwrt/package/base-files/rb532-2.6/etc/config/network b/openwrt/package/base-files/rb532-2.6/etc/config/network
index f60332c..2bb48b8 100644
--- a/openwrt/package/base-files/rb532-2.6/etc/config/network
+++ b/openwrt/package/base-files/rb532-2.6/etc/config/network
@@ -1,4 +1,5 @@
# Network configuration file
+# Copyright (C) 2006 OpenWrt.org
## LAN configuration
lan_ifname="eth0"
diff --git a/openwrt/package/base-files/sibyte-2.6/etc/config/network b/openwrt/package/base-files/sibyte-2.6/etc/config/network
index 2cc9e26..576677b 100644
--- a/openwrt/package/base-files/sibyte-2.6/etc/config/network
+++ b/openwrt/package/base-files/sibyte-2.6/etc/config/network
@@ -1,4 +1,5 @@
# Network configuration file
+# Copyright (C) 2006 OpenWrt.org
## LAN configuration
lan_ifname="br0"
diff --git a/openwrt/package/base-files/sibyte-2.6/etc/inittab b/openwrt/package/base-files/sibyte-2.6/etc/inittab
index 6eef29e..a6f4e17 100644
--- a/openwrt/package/base-files/sibyte-2.6/etc/inittab
+++ b/openwrt/package/base-files/sibyte-2.6/etc/inittab
@@ -1,3 +1,5 @@
+# Copyright (C) 2006 OpenWrt.org
+
::sysinit:/etc/init.d/rcS
duart/0::askfirst:/bin/ash --login
#tts/1::askfirst:/bin/ash --login
diff --git a/openwrt/package/base-files/x86-2.4/etc/config/network b/openwrt/package/base-files/x86-2.4/etc/config/network
index fd0f557..7bcfd08 100644
--- a/openwrt/package/base-files/x86-2.4/etc/config/network
+++ b/openwrt/package/base-files/x86-2.4/etc/config/network
@@ -1,4 +1,5 @@
# Network configuration file
+# Copyright (C) 2006 OpenWrt.org
## LAN configuration
lan_ifname="br0"
diff --git a/openwrt/package/base-files/x86-2.6/etc/config/network b/openwrt/package/base-files/x86-2.6/etc/config/network
index fd0f557..7bcfd08 100644
--- a/openwrt/package/base-files/x86-2.6/etc/config/network
+++ b/openwrt/package/base-files/x86-2.6/etc/config/network
@@ -1,4 +1,5 @@
# Network configuration file
+# Copyright (C) 2006 OpenWrt.org
## LAN configuration
lan_ifname="br0"
diff --git a/openwrt/package/base-files/xscale-2.6/etc/config/network b/openwrt/package/base-files/xscale-2.6/etc/config/network
index f60332c..2bb48b8 100644
--- a/openwrt/package/base-files/xscale-2.6/etc/config/network
+++ b/openwrt/package/base-files/xscale-2.6/etc/config/network
@@ -1,4 +1,5 @@
# Network configuration file
+# Copyright (C) 2006 OpenWrt.org
## LAN configuration
lan_ifname="eth0"