Commit b09a24d3 authored by Ulf Samuelsson's avatar Ulf Samuelsson
Browse files

Update NWG100 skeleton

parent d2b3ce5c
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -5,7 +5,9 @@ sys:x:3:
adm:x:4:
tty:x:5:
disk:x:6:
kmem:x:9:
wheel:x:10:root
dialout:x:20:
utmp:x:43:
staff:x:50:
www-data::51:
+0 −3
Original line number Diff line number Diff line
@@ -58,9 +58,6 @@ if mount_fs dev /dev tmpfs "size=512k,mode=0755"; then
	mkdir_fs /dev/pts
	mount_fs pts /dev/pts devpts
	mkdir_fs /dev/shm
	# Hack to enable mouse support when using buildroot mdev
	ln -s . /dev/input
	ln -s . /dev/snd
fi

mount_fs config /config configfs
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@

INETD=/usr/sbin/inetd

echo -n "Starting inted: "
echo -n "Starting inetd: "
if [ ! -x "${INETD}" ]; then
	echo "missing"
	exit 1
+49 −0
Original line number Diff line number Diff line
# mdev.conf for ATSTK1000
#
# Syntax:
#  <regexp> <UID>:<GID> <PERM> [{@,$,*} <CMD>]
#    @: run <CMD> after creating
#    $: run <CMD> before removal
#    *: like @ and $ at the same time
#    <CMD> is run inside /dev using system()

full	0:0	666
null	0:0	777
zero	0:0	666

random	0:0	444
urandom	0:0	444

console	0:5	0600
kmem	0:9	000
mem	0:9	0640
ptmx	0:5	0660

sda.*	0:6	0660
sdb.*	0:6	0660
hda.*	0:6	0660
hdb.*	0:6	0660
mtd.*	0:6	0660
mmc.*	0:6	0660

# Move input devices to input directory
event.*	0:0	0660	@(mkdir -p input&&mv $MDEV input)
mice	0:0	0660	@(mkdir -p input&&mv $MDEV input)
mouse.*	0:0	0660	@(mkdir -p input&&mv $MDEV input)

# Move sound devices to sound directory
pcm.*		0:101	0660	@(mkdir -p snd&&mv $MDEV snd)
seq		0:101	0660	@(mkdir -p snd&&mv $MDEV snd)
timer		0:101	0660	@(mkdir -p snd&&mv $MDEV snd)
control.*	0:101	0660	@(mkdir -p snd&&mv $MDEV snd)

tty	0:5	0660
tty0.*	0:5	0660
tty1.*	0:5	0660
tty2.*	0:5	0660
tty3.*	0:5	0660
tty4.*	0:5	0660
tty5.*	0:5	0660
tty6.*	0:5	0660

ttyS.*	0:20	640
+3 −3
Original line number Diff line number Diff line
root:$1$rsjkLsTU$zdulfnYQgyKmN3e0Fiw7C1:0:0:root:/:/bin/sh
root:x:0:0:root:/:/bin/sh
daemon:x:1:1:daemon:/usr/sbin:/bin/sh
bin:x:2:2:bin:/bin:/bin/sh
sys:x:3:3:sys:/dev:/bin/sh
@@ -10,9 +10,9 @@ backup:x:34:34:backup:/var/backups:/bin/sh
operator:x:37:37:Operator:/var:/bin/sh
haldaemon:x:68:68:hald:/:/bin/sh
dbus:x:81:81:dbus:/var/run/dbus:/bin/sh
ftp::50:50:Anonymous FTP user:/home/ftp:/bin/ash
ftp:x:50:50:Anonymous FTP user:/home/ftp:/bin/ash
dnsmasq:x:52:52:dnsmasq:/var/lib/dnsmasq:/bin/false
sshd:x:110:65534:Operator:/var/run/sshd:/bin/false
nobody:x:65534:65534:nobody:/nonexistent:/bin/false
avr32:$1$iPQqCZth$aB00EMq2M101iRqQU8d4v/:500:500:Linux User,,,:/home/avr32:/bin/sh
avr32:x:500:500:Linux User,,,:/home/avr32:/bin/sh
default:x:1000:1000:Default non-root user:/home/default:/bin/sh
Loading