proc /proc proc defaults 0 0
-/dev/hda2 / ext2 defaults 0 0
/dev/hda1 /mnt/cf auto defaults,sync,noauto 0 0
+/dev/hda2 / ext2 defaults 0 0
/dev/hda3 none swap sw 0 0
-tmpfs /var/volatiles tmpfs defaults 0 0
+tmpfs /var/volatile tmpfs defaults 0 0
tmpfs /mnt/ram tmpfs defaults 0 0
-tmpfs /dev/shm tmpfs mode=0777 0 0
+tmpfs /dev/shm tmpfs mode=0777 0 0
devpts /dev/pts devpts defaults 0 0
--- /dev/null
+# /etc/profile: system-wide .profile file for the Bourne shell (sh(1))
+# and Bourne compatible shells (bash(1), ksh(1), ash(1), ...).
+
+PATH="/bin:/usr/bin:/usr/local/bin:/usr/games"
+EDITOR="/usr/bin/nano" # needed for packages like cron
+TERM="linux" # Basic terminal capab. For screen etc.
+
+if [ "`id -u`" -eq 0 ]; then
+ PATH="$PATH:/sbin:/usr/sbin:/usr/local/sbin"
+fi
+
+if [ ! -e /etc/localtime ]; then
+ TZ="UTC" # Time Zone. Look at http://theory.uwinnipeg.ca/gnu/glibc/libc_303.html
+ # for an explanation of how to set this to your local timezone.
+ export TZ
+fi
+
+if [ "$PS1" ]; then
+# works for bash and ash (no other shells known to be in use here)
+ PS1='\u@\h:\w\$ '
+fi
+
+if [ -d /etc/profile.d ]; then
+ for i in `ls /etc/profile.d/`; do
+ . /etc/profile.d/$i
+ done
+ unset i
+fi
+
+alias ls='ls --color'
+
+export PATH PS1 OPIEDIR QPEDIR QTDIR EDITOR TERM
+
+umask 022
\ No newline at end of file