diff options
author | Chris Larson <clarson@kergoth.com> | 2004-11-20 21:58:57 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-11-20 21:58:57 +0000 |
commit | 118f5023d2cc9bb1659e32339e11233a8542f136 (patch) | |
tree | 22a41b9de4a6ac4871c2defc8e0175a6f716aed4 /initscripts/initscripts-1.0 | |
parent | f3cdfa9054c1b6a8f170147942ca6b3ee6f16f44 (diff) |
Merge openembedded@openembedded.bkbits.net:packages-devel
into hyperion.kergoth.com:/home/kergoth/code/packages
2004/11/20 15:58:56-06:00 ti.com!kergoth
initscripts: kill off extractfs, which was never actually symlinked for execution anyway, and which is deprecated in favor of the 'populate-var' script.
BKrev: 419fbe218B0Sv67-RMFZ_yACHBC-iQ
Diffstat (limited to 'initscripts/initscripts-1.0')
-rw-r--r-- | initscripts/initscripts-1.0/extractfs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/initscripts/initscripts-1.0/extractfs b/initscripts/initscripts-1.0/extractfs deleted file mode 100644 index e5fa4e2985..0000000000 --- a/initscripts/initscripts-1.0/extractfs +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/sh - -. /etc/default/rcS - -set -e - -if (grep -q 'ramfs.*/var.*ramfs' /proc/mounts) || (grep -q 'tmpfs.*/var.*tmpfs' /proc/mounts) -then - if test "$VERBOSE" != "no"; then echo -n "Populating /var filesystem: "; fi - cd / - tar -xpf /boot/var.tar - if test $? -ne 0; then - if test "$VERBOSE" != "no"; then echo "failed"; fi - else - if test "$VERBOSE" != "no"; then echo "done"; fi - fi -fi - -# Sharp ROM compatibility links -if ! [ -e /home/QtPalmtop ]; then - ln -sf /opt/QtPalmtop /home/QtPalmtop -fi - -if ! [ -e /home/root ]; then - ln -sf /root /home/root -fi - -exit 0 |