--- /dev/null
+drwxr-xr-x root/root bin/
+drwxr-xr-x root/root boot/
+drwxr-xr-x root/root dev/
+crw------- root/root dev/console (5, 1)
+drwxr-xr-x root/root dev/pts/
+drwxr-xr-x root/root dev/shm/
+drwxr-xr-x root/root etc/
+-rw-r--r-- root/root etc/fstab
+-rw-r--r-- root/root etc/group
+-rw-r--r-- root/root etc/issue
+-rw-r--r-- root/root etc/mime.types
+-rw-r--r-- root/root etc/motd (EMPTY)
+lrwxrwxrwx root/root etc/mtab -> /proc/self/mounts
+-rw-r--r-- root/root etc/passwd
+-rw-r--r-- root/root etc/securetty
+-rw-r----- root/root etc/shadow
+-rw-r--r-- root/root etc/shells
+drwxr-xr-x root/root home/
+drwxr-xr-x root/root lib/
+drwxr-xr-x root/root lib/modules/
+drwxr-xr-x root/root mnt/
+drwxr-xr-x root/root opt/
+drwxr-xr-x root/root opt/bin/
+drwxr-xr-x root/root opt/sbin/
+drwxr-xr-x root/root proc/
+drwxr-x--- root/root root/
+drwxr-xr-x root/root run/
+drwxr-xr-x root/root sbin/
+drwxr-xr-x root/root sys/
+drwxrwxrwt root/root tmp/
+drwxr-xr-x root/root usr/
+drwxr-xr-x root/root usr/bin/
+-rwxr-xr-x root/root usr/bin/crux
+drwxr-xr-x root/root usr/include/
+drwxr-xr-x root/root usr/lib/
+drwxr-xr-x root/root usr/man/
+drwxr-xr-x root/root usr/man/man1/
+drwxr-xr-x root/root usr/man/man2/
+drwxr-xr-x root/root usr/man/man3/
+drwxr-xr-x root/root usr/man/man4/
+drwxr-xr-x root/root usr/man/man5/
+drwxr-xr-x root/root usr/man/man6/
+drwxr-xr-x root/root usr/man/man7/
+drwxr-xr-x root/root usr/man/man8/
+drwxr-xr-x root/root usr/sbin/
+drwxr-xr-x root/root usr/share/
+drwxr-xr-x root/root usr/src/
+lrwxrwxrwx root/root usr/var -> ../var
+drwxr-xr-x root/root var/
+drwxr-xr-x root/root var/cache/
+drwxr-xr-x root/root var/empty/
+drwxr-xr-x root/root var/ftp/
+drwxr-xr-x root/root var/lib/
+drwxr-xr-x root/root var/lib/pkg/
+drwxrwxrwt root/root var/lock/
+drwxr-xr-x root/root var/log/
+drwxr-xr-x root/root var/log/old/
+lrwxrwxrwx root/root var/mail -> spool/mail
+drwxr-xr-x root/root var/run/
+-rw-r--r-- root/root var/run/utmp (EMPTY)
+drwxr-xr-x root/root var/spool/
+drwxrwxrwt root/root var/spool/mail/
+drwxrwxrwt root/root var/tmp/
+drwxr-xr-x root/root var/www/
--- /dev/null
+1ea1c43f6dceaf64d1a8d96fda1d4c2b fstab
+7b103e0325616227a5d615f3c8687bb8 group
+ca2a8cf1bf672f64af8807259b9abf63 issue
+346ede8d637940e2898cd29c56a37d30 mime.types
+d41d8cd98f00b204e9800998ecf8427e motd
+5f548195598fc07c16cf826256d4a471 passwd
+4faaa4e1ba24038f8638a0cae5046cfb securetty
+cf485c9730cb02e69176eb6aa6b75303 shadow
+0267fc00722e42588ad7ab4fe35067b8 shells
--- /dev/null
+# Description: Root filesystem package
+# URL: http://crux.nu
+# Maintainer: CRUX System Team, core-ports at crux dot nu
+# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
+
+name=filesystem
+version=2.8
+release=3
+source=(issue motd shells group passwd shadow securetty fstab mime.types)
+
+build() {
+ # Directory structure
+ mkdir $PKG/bin
+ mkdir $PKG/sbin
+ mkdir $PKG/boot
+ mkdir $PKG/dev
+ mkdir $PKG/dev/{pts,shm}
+ mkdir $PKG/proc
+ mkdir $PKG/sys
+ mkdir $PKG/etc
+ mkdir $PKG/tmp
+ mkdir $PKG/mnt
+ mkdir $PKG/root
+ mkdir $PKG/run
+ mkdir $PKG/lib
+ mkdir $PKG/lib/modules
+ mkdir $PKG/opt
+ mkdir $PKG/opt/bin
+ mkdir $PKG/opt/sbin
+ mkdir $PKG/usr
+ mkdir $PKG/usr/{bin,include,lib,sbin,share,src,man}
+ mkdir $PKG/usr/man/man{1,2,3,4,5,6,7,8}
+ ln -s ../var $PKG/usr/var
+ mkdir $PKG/var
+ mkdir $PKG/var/cache
+ mkdir $PKG/var/lib
+ mkdir $PKG/var/lib/pkg
+ mkdir $PKG/var/lock
+ mkdir $PKG/var/log
+ mkdir $PKG/var/log/old
+ mkdir $PKG/var/run
+ touch $PKG/var/run/utmp
+ mkdir $PKG/var/spool
+ mkdir $PKG/var/spool/mail
+ mkdir $PKG/var/tmp
+ mkdir $PKG/var/ftp
+ mkdir $PKG/var/www
+ mkdir $PKG/var/empty
+ ln -s spool/mail $PKG/var/mail
+ mkdir $PKG/home
+
+ chmod 1777 $PKG/var/spool/mail
+ chmod 1777 $PKG/tmp
+ chmod 1777 $PKG/var/lock
+ chmod 1777 $PKG/var/tmp
+ chmod 0750 $PKG/root
+
+ # /dev
+ mknod $PKG/dev/console c 5 1
+ chmod 0600 $PKG/dev/console
+
+ # /etc
+ cp issue $PKG/etc
+ cp motd $PKG/etc
+ cp shells $PKG/etc
+ cp group $PKG/etc
+ cp passwd $PKG/etc
+ cp shadow $PKG/etc
+ cp securetty $PKG/etc
+ cp fstab $PKG/etc
+ cp mime.types $PKG/etc
+ ln -s /proc/self/mounts $PKG/etc/mtab
+ chmod 640 $PKG/etc/shadow
+
+ # /usr/bin/crux
+cat > $PKG/usr/bin/crux << EOF
+#!/bin/sh
+
+echo "CRUX-ARMHF version $version"
+
+# End of file
+EOF
+ chmod 755 $PKG/usr/bin/crux
+}
--- /dev/null
+#
+# /etc/fstab: static file system information
+#
+# <file system> <dir> <type> <options> <dump> <pass>
+
+#/dev/#REISERFS_ROOT# / reiserfs defaults 0 0
+#/dev/#EXT3FS_ROOT# / ext3 defaults 0 1
+#/dev/#EXT4FS_ROOT# / ext4 defaults 0 1
+#/dev/#JFS_ROOT# / jfs defaults 1 1
+#/dev/#XFS_ROOT# / xfs defaults 0 0
+#/dev/#SWAP# swap swap defaults 0 0
+#/dev/#REISERFS_HOME# /home reiserfs defaults 0 0
+#/dev/#EXT3FS_HOME# /home ext3 defaults 0 2
+#/dev/#EXT4FS_HOME# /home ext4 defaults 0 2
+#/dev/#JFS_HOME# /home jfs defaults 1 2
+#/dev/#XFS_HOME# /home xfs defaults 0 0
+#/dev/cdrom /cdrom iso9660 ro,user,noauto,unhide 0 0
+#/dev/dvd /dvd udf ro,user,noauto,unhide 0 0
+#/dev/floppy/0 /floppy vfat user,noauto,unhide 0 0
+devpts /dev/pts devpts defaults 0 0
+#tmp /tmp tmpfs defaults 0 0
+#shm /dev/shm tmpfs defaults 0 0
+#usb /proc/bus/usb usbfs defaults 0 0
+
+# End of file
--- /dev/null
+root::0:root
+bin::1:root,bin,daemon
+daemon::2:root,bin,daemon
+sys::3:root,bin
+adm::4:root,daemon
+tty::5:
+disk::6:root
+lp::7:daemon
+mem::8:
+kmem::9:
+wheel::10:root
+ftp::11:
+mail::12:
+mlocate::13:
+dialout::14:
+www::15:
+audio::16:
+video::17:
+floppy::18:
+tape::19:
+scanner::20:
+cdrom::21:
+nobody::99:
+messagebus::81:
+users::100:
--- /dev/null
+
+CRUX-ARMHF (\n) (\l)
+
--- /dev/null
+#
+# /etc/mime.types: mime types
+#
+
+application/andrew-inset ez
+application/excel xls
+application/octet-stream bin
+application/oda oda
+application/pdf pdf
+application/pgp pgp
+application/postscript ps PS eps
+application/rtf rtf
+application/x-arj-compressed arj
+application/x-bcpio bcpio
+application/x-chess-pgn pgn
+application/x-cpio cpio
+application/x-csh csh
+application/x-debian-package deb
+application/x-msdos-program com exe bat
+application/x-dvi dvi
+application/x-gtar gtar
+application/x-gunzip gz
+application/x-hdf hdf
+application/x-latex latex
+application/x-mif mif
+application/x-netcdf cdf nc
+application/x-perl pl pm
+application/x-rar-compressed rar
+application/x-sh sh
+application/x-shar shar
+application/x-sv4cpio sv4cpio
+application/x-sv4crc sv4crc
+application/x-tar tar
+application/x-tar-gz tgz tar.gz
+application/x-tcl tcl
+application/x-tex tex
+application/x-texinfo texi texinfo
+application/x-troff t tr roff
+application/x-troff-man man
+application/x-troff-me me
+application/x-troff-ms ms
+application/x-ustar ustar
+application/x-wais-source src
+application/x-zip-compressed zip
+
+audio/basic snd
+audio/midi mid midi
+audio/ulaw au
+audio/x-aiff aif aifc aiff
+audio/x-wav wav
+
+image/gif gif
+image/ief ief
+image/jpeg jpe jpeg jpg
+image/png png
+image/tiff tif tiff
+image/x-cmu-raster ras
+image/x-portable-anymap pnm
+image/x-portable-bitmap pbm
+image/x-portable-graymap pgm
+image/x-portable-pixmap ppm
+image/x-rgb rgb
+image/x-xbitmap xbm
+image/x-xpixmap xpm
+image/x-xwindowdump xwd
+
+text/html html htm
+text/plain asc txt
+text/css css
+text/richtext rtx
+text/tab-separated-values tsv
+text/x-setext etx
+
+video/dl dl
+video/fli fli
+video/gl gl
+video/mpeg mp2 mpe mpeg mpg
+video/quicktime mov qt
+video/x-msvideo avi
+video/x-sgi-movie movie
+
+x-world/x-vrml vrm vrml wrl
+
+# End of file
--- /dev/null
+root:x:0:0:root:/root:/bin/bash
+bin:x:1:1:bin:/bin:
+daemon:x:2:2:daemon:/sbin:
+mail:x:8:12:mail:/var/spool/mail:
+ftp:x:14:11:ftp:/var/ftp:
+www:x:15:15:www:/var/www:/bin/false
+messagebus:x:81:81::/var/empty:/bin/false
+nobody:x:99:99:nobody:/:
--- /dev/null
+#
+# /etc/securetty: defines which devices root can log in on
+#
+
+console
+ttyS0
+tty1
+tty2
+tty3
+tty4
+tty5
+tty6
+
+# End of file
--- /dev/null
+root::0::::::
+bin:x:0::::::
+daemon:x:0::::::
+mail:x:0::::::
+ftp:x:0::::::
+www:x:0::::::
+messagebus:x:0::::::
+nobody:x:0::::::
--- /dev/null
+#
+# /etc/shells: defines valid login shells
+#
+
+/bin/sh
+/bin/bash
+
+# End of file