summaryrefslogtreecommitdiff
path: root/rcS
blob: af7bd5da0385fb1ecb3f1662a422fdf894ee10cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
rm /etc/mtab
touch /etc/mtab
mount -t proc proc /proc
mount -t sysfs sysfs /sys
mount -t tmpfs -o size=0 tmpfs /dev
mkdir -p /dev/pts
mount -t devpts devpts /dev/pts

echo /sbin/mdev >/proc/sys/kernel/hotplug
mdev -s

hostname -F /etc/hostname

ifdown eth0
ifup eth0