diff options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/fstab | 8 | ||||
-rw-r--r-- | etc/group | 11 | ||||
-rw-r--r-- | etc/inittab | 11 | ||||
-rw-r--r-- | etc/issue | 2 | ||||
-rw-r--r-- | etc/mdev.conf | 61 | ||||
-rw-r--r-- | etc/passwd | 1 | ||||
-rw-r--r-- | etc/profile | 16 |
7 files changed, 110 insertions, 0 deletions
diff --git a/etc/fstab b/etc/fstab new file mode 100644 index 0000000..3f36fc2 --- /dev/null +++ b/etc/fstab @@ -0,0 +1,8 @@ +# file system mount-point type options dump fsck +# order + +rootfs / auto defaults 1 1 +proc /proc proc defaults 0 0 +sysfs /sys sysfs defaults 0 0 +devpts /dev/pts devpts gid=4,mode=620 0 0 +tmpfs /dev/shm tmpfs defaults 0 0
\ No newline at end of file diff --git a/etc/group b/etc/group new file mode 100644 index 0000000..ad3bf97 --- /dev/null +++ b/etc/group @@ -0,0 +1,11 @@ +root:x:0: +bin:x:1: +sys:x:2: +kmem:x:3: +tty:x:4: +daemon:x:6: +disk:x:8: +dialout:x:10: +video:x:12: +utmp:x:13: +usb:x:14:
\ No newline at end of file diff --git a/etc/inittab b/etc/inittab new file mode 100644 index 0000000..830a9ee --- /dev/null +++ b/etc/inittab @@ -0,0 +1,11 @@ +::sysinit:/etc/rc.d/startup + +tty1::respawn:/sbin/getty 38400 tty1 +tty2::respawn:/sbin/getty 38400 tty2 +tty3::respawn:/sbin/getty 38400 tty3 +tty4::respawn:/sbin/getty 38400 tty4 +tty5::respawn:/sbin/getty 38400 tty5 +tty6::respawn:/sbin/getty 38400 tty6 + +::shutdown:/etc/rc.d/shutdown +::ctrlaltdel:/sbin/reboot
\ No newline at end of file diff --git a/etc/issue b/etc/issue new file mode 100644 index 0000000..1e67e99 --- /dev/null +++ b/etc/issue @@ -0,0 +1,2 @@ +Melvix 0.1a +Kernel \r on an \m diff --git a/etc/mdev.conf b/etc/mdev.conf new file mode 100644 index 0000000..26bb575 --- /dev/null +++ b/etc/mdev.conf @@ -0,0 +1,61 @@ +# Devices: +# Syntax: %s %d:%d %s +# devices user:group mode + +# null does already exist; therefore ownership has to +# be changed with command +null root:root 0666 @chmod 666 $MDEV +zero root:root 0666 +grsec root:root 0660 +full root:root 0666 + +random root:root 0666 +urandom root:root 0444 +hwrandom root:root 0660 + +# console does already exist; therefore ownership has to +# be changed with command +console root:tty 0600 @mkdir -pm 755 fd && cd fd && for x + ↪in 0 1 2 3 ; do ln -sf /proc/self/fd/$x $x; done + +kmem root:root 0640 +mem root:root 0640 +port root:root 0640 +ptmx root:tty 0666 + +# ram.* +ram([0-9]*) root:disk 0660 >rd/%1 +loop([0-9]+) root:disk 0660 >loop/%1 +sd[a-z].* root:disk 0660 */lib/mdev/usbdisk_link +hd[a-z][0-9]* root:disk 0660 */lib/mdev/ide_links + +tty root:tty 0666 +tty[0-9] root:root 0600 +tty[0-9][0-9] root:tty 0660 +ttyO[0-9]* root:tty 0660 +pty.* root:tty 0660 +vcs[0-9]* root:tty 0660 +vcsa[0-9]* root:tty 0660 + +ttyLTM[0-9] root:dialout 0660 @ln -sf $MDEV modem +ttySHSF[0-9] root:dialout 0660 @ln -sf $MDEV modem +slamr root:dialout 0660 @ln -sf $MDEV slamr0 +slusb root:dialout 0660 @ln -sf $MDEV slusb0 +fuse root:root 0666 + +# misc stuff +agpgart root:root 0660 >misc/ +psaux root:root 0660 >misc/ +rtc root:root 0664 >misc/ + +# input stuff +event[0-9]+ root:root 0640 =input/ +ts[0-9] root:root 0600 =input/ + +# v4l stuff +vbi[0-9] root:video 0660 >v4l/ +video[0-9] root:video 0660 >v4l/ + +# load drivers for usb devices +usbdev[0-9].[0-9] root:root 0660 */lib/mdev/usbdev +usbdev[0-9].[0-9]_.* root:root 0660
\ No newline at end of file diff --git a/etc/passwd b/etc/passwd new file mode 100644 index 0000000..221b37e --- /dev/null +++ b/etc/passwd @@ -0,0 +1 @@ +root::0:0:root:/root:/bin/ash
\ No newline at end of file diff --git a/etc/profile b/etc/profile new file mode 100644 index 0000000..c8a1a52 --- /dev/null +++ b/etc/profile @@ -0,0 +1,16 @@ +export PATH=/bin:/usr/bin + +if [ `id -u` -eq 0 ] ; then + PATH=/bin:/sbin:/usr/bin:/usr/sbin + unset HISTFILE +fi + + +# Set up some environment variables. +export USER=`id -un` +export LOGNAME=$USER +export HOSTNAME=`/bin/hostname` +export HISTSIZE=1000 +export HISTFILESIZE=1000 +export PAGER='/bin/more ' +export EDITOR='/bin/vi'
\ No newline at end of file |