slitaz-modular rev 127

initramfs: Removed tazbb. Don't need linux-udf now thats build in kernel image.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Aug 13 18:36:30 2011 +0000 (2011-08-13)
parents de2f0a135cd5
children 6f805b72d9a2
files initramfs/init initramfs/initramfs.list initramfs/usr/bin/tazbb
line diff
     1.1 --- a/initramfs/init	Sat Aug 13 18:28:08 2011 +0000
     1.2 +++ b/initramfs/init	Sat Aug 13 18:36:30 2011 +0000
     1.3 @@ -12,7 +12,7 @@
     1.4  	[ -d /proc/sys ] && umount /proc
     1.5  	echo -e "\\033[70G[ \\033[1;33mOK\\033[0;39m ]"
     1.6  	[ -d /mnt/initramfs ] || mkdir -p /mnt/initramfs
     1.7 -	SYS_DIR="dev bin etc boot lib sbin home root usr var"
     1.8 +	SYS_DIR="dev bin etc boot lib sbin home root run usr var"
     1.9  	for dir in $SYS_DIR; do
    1.10  		cp -a /$dir /mnt/initramfs
    1.11  	done
     2.1 --- a/initramfs/initramfs.list	Sat Aug 13 18:28:08 2011 +0000
     2.2 +++ b/initramfs/initramfs.list	Sat Aug 13 18:36:30 2011 +0000
     2.3 @@ -10,7 +10,6 @@
     2.4  lzlib
     2.5  depmod
     2.6  linux
     2.7 -linux-udf
     2.8  attr
     2.9  libcap
    2.10  gettext-base
     3.1 --- a/initramfs/usr/bin/tazbb	Sat Aug 13 18:28:08 2011 +0000
     3.2 +++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
     3.3 @@ -1,30 +0,0 @@
     3.4 -#!/bin/sh
     3.5 -
     3.6 -LOCAL_REPOSITORY="$SLITAZ_DIR/${undigest:-$SLITAZ_VERSION}"
     3.7 -if [ -f $LOCAL_REPOSITORY/tazchroot.conf ]; then
     3.8 -	. $LOCAL_REPOSITORY/tazchroot.conf
     3.9 -else
    3.10 -	tazwok configure-chroot
    3.11 -	. $LOCAL_REPOSITORY/tazchroot.conf
    3.12 -fi
    3.13 -
    3.14 -if [ -f $LOCAL_REPOSITORY/slitaz.conf ]; then
    3.15 -	. $LOCAL_REPOSITORY/slitaz.conf
    3.16 -else
    3.17 -	. /etc/slitaz/slitaz.conf
    3.18 -fi
    3.19 -
    3.20 -if [ -f $LOCAL_REPOSITORY/tazwok.conf ]; then
    3.21 -	. $LOCAL_REPOSITORY/tazwok.conf
    3.22 -else
    3.23 -	. /etc/slitaz/tazwok.conf
    3.24 -fi
    3.25 -
    3.26 -[ -d $chroot_dir ] || create_chroot
    3.27 -
    3.28 -if [ -x $LOCAL_REPOSITORY/chroot/$1 ]; then
    3.29 -	mount_chroot
    3.30 -	chroot $LOCAL_REPOSITORY/chroot $1
    3.31 -	umount_chroot
    3.32 -fi
    3.33 -