Merge bk://openembedded@openembedded.bkbits.net/packages
authorMichael Lauer <mickey@vanille-media.de>
Sun, 6 Jun 2004 21:13:06 +0000 (21:13 +0000)
committerMichael Lauer <mickey@vanille-media.de>
Sun, 6 Jun 2004 21:13:06 +0000 (21:13 +0000)
into r2d2.tm.informatik.uni-frankfurt.de:/home/projekte/packages

2004/06/06 23:13:00+02:00 uni-frankfurt.de!mickeyl
run /sbin/ldconfig during bootmisc.sh

2004/06/06 22:50:48+02:00 uni-frankfurt.de!mickeyl
make /etc/profile source everything in /etc/profile.d
we should check if we could use run-parts, but i'm not sure if this can source scripts

BKrev: 40c388e2zNj7HHEgPtOl93czD_t5LQ

base-files/base-files/etc/profile
initscripts/initscripts-1.0-r0/bootmisc.sh
putty/putty_cvs.oe [new file with mode: 0644]

index 2e28fc7..08b8355 100644 (file)
@@ -14,6 +14,13 @@ if [ "$PS1" ]; then
    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
+
 export PATH PS1 OPIEDIR QPEDIR QTDIR
 
 umask 022
index e69de29..74d27f5 100644 (file)
@@ -0,0 +1,50 @@
+#
+# bootmisc.sh  Miscellaneous things to be done during bootup.
+#
+
+. /etc/default/rcS
+#
+# Put a nologin file in /etc to prevent people from logging in before
+# system startup is complete.
+#
+if test "$DELAYLOGIN" = yes
+then
+  echo "System bootup in progress - please wait" > /etc/nologin
+  cp /etc/nologin /etc/nologin.boot
+fi
+
+#
+# Set pseudo-terminal access permissions.
+#
+if ( ! grep -q devfs /proc/mounts ) && test -c /dev/ttyp0
+then
+       chmod 666 /dev/tty[p-za-e][0-9a-f]
+       chown root:tty /dev/tty[p-za-e][0-9a-f]
+fi
+
+#
+# Update /etc/motd.
+#
+if test "$EDITMOTD" != no
+then
+       uname -a > /etc/motd.tmp
+       sed 1d /etc/motd >> /etc/motd.tmp
+       mv /etc/motd.tmp /etc/motd
+fi
+
+#
+# This is as good a place as any for a sanity check
+# /tmp should be a symlink to /var/tmp to cut down on the number
+# of mounted ramdisks.
+if test ! -L /tmp && test -d /var/tmp
+then
+       rm -rf /tmp
+       ln -sf /var/tmp tmp
+fi
+
+#
+# Update dynamic library cache
+#
+/sbin/ldconfig
+
+: exit 0
diff --git a/putty/putty_cvs.oe b/putty/putty_cvs.oe
new file mode 100644 (file)
index 0000000..e69de29