diff options
author | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-12-09 09:47:41 +0000 |
commit | 2c5b8ec6d95cf68650265941530e5ce38c8dd6d9 (patch) | |
tree | bf879bea7ef8517ba8c3d1286ef300401d3d484c /initscripts/initscripts-1.0/ramses | |
parent | 101e2f1623def0a355d20aacb8bd93810703e834 (diff) |
Merge oe-devel@oe-devel.bkbits.net:openembedded
into hyperion.kergoth.com:/home/kergoth/code/openembedded
2004/12/09 03:39:39-06:00 kergoth.com!kergoth
Break people's builds again.. this time moving the packages into a packages/ subdir to clean things up a bit.
BKrev: 41b81f3dvlp3rU7_8MUXLcI8LDdDoA
Diffstat (limited to 'initscripts/initscripts-1.0/ramses')
-rw-r--r-- | initscripts/initscripts-1.0/ramses/extractfs | 7 | ||||
-rw-r--r-- | initscripts/initscripts-1.0/ramses/packages | 63 | ||||
-rw-r--r-- | initscripts/initscripts-1.0/ramses/umountfs | 17 |
3 files changed, 0 insertions, 87 deletions
diff --git a/initscripts/initscripts-1.0/ramses/extractfs b/initscripts/initscripts-1.0/ramses/extractfs deleted file mode 100644 index 7e57dedd2d..0000000000 --- a/initscripts/initscripts-1.0/ramses/extractfs +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -if (grep -q 'tmpfs.*/var.*tmpfs' /proc/mounts) -then - test "$VERBOSE" != no && echo "Copying /var filesystem..." - cp -a /boot/var / -fi diff --git a/initscripts/initscripts-1.0/ramses/packages b/initscripts/initscripts-1.0/ramses/packages deleted file mode 100644 index 2566487d2d..0000000000 --- a/initscripts/initscripts-1.0/ramses/packages +++ /dev/null @@ -1,63 +0,0 @@ -#!/bin/sh -# Original author: ??? -# -# Additions by Steph Meslin-Weber: -# x Percentage display -# x Dot display of dependency installations -# - removed both of above -# - display is now X of Y packages and current package name being installed - -#. /etc/default/rcS - -reconfigure () { - pkg=$1 - path=$2 - isdependent=$3 - test -e "$path/info/$pkg.control" || return 1 - depends="`cat $path/info/$pkg.control|grep Depends|cut -d: -f2`" - - # make sure we haven't already installed this package - isthere=`cat /tmp/.configured.list|grep $pkg` - if test "$isthere" != ""; then - return 1 - fi - - if test "$depends" != ""; then - for dep in $depends; do - (echo $log|grep $dep >/dev/null 2>&1) || ( reconfigure $dep $path "$max" "$pkg" && log="$log $dep"; ) - done - fi - - echo -ne " ${pkg}" - - test -e "$path/info/$pkg.prerm" && $path/info/$pkg.prerm unconfigure >/dev/null 2>&1 - test -e "$path/info/$pkg.postinst" && $path/info/$pkg.postinst configure >/dev/null 2>&1 - - log="$log $pkg" - - # append the installed package name to the list - echo -ne "$pkg\n" >> /tmp/.configured.list - - echo - return 0 -} - -if test ! -e /etc/.configured; then - echo "Reconfiguring all packages installed to root:" - - # create unique packages list file - rm -f /tmp/.configured.list - touch /tmp/.configured.list - - log="" - - for control in /usr/lib/ipkg/info/*.control; do - package=`echo $control|sed -e 's,.*/,,g; s,\.control,,g;'` - (echo $log|grep $package >/dev/null 2>&1) || reconfigure $package /usr/lib/ipkg - done - - # cleanup unique packages list file - rm -f /tmp/.configured.list -fi - -test -f /usr/lib/ipkg/info/task-ramses || ipkg install task-ramses diff --git a/initscripts/initscripts-1.0/ramses/umountfs b/initscripts/initscripts-1.0/ramses/umountfs deleted file mode 100644 index 399194109b..0000000000 --- a/initscripts/initscripts-1.0/ramses/umountfs +++ /dev/null @@ -1,17 +0,0 @@ -#! /bin/sh -# -# umountfs Turn off swap and unmount all local filesystems. -# - -PATH=/sbin:/bin:/usr/sbin:/usr/bin - -echo "Deactivating swap..." -swapoff -a - -# We leave /proc mounted. -echo "Unmounting local filesystems..." -umount -f -a -r - -mount -o remount,ro / - -: exit 0 |