# HG changeset patch # User Christopher Rogers # Date 1313260590 0 # Node ID ea6b229d8c84eb22642b31daf470d01f21ffaf41 # Parent de2f0a135cd569820a8da3cb87d01f5f87b8e10f initramfs: Removed tazbb. Don't need linux-udf now thats build in kernel image. diff -r de2f0a135cd5 -r ea6b229d8c84 initramfs/init --- a/initramfs/init Sat Aug 13 18:28:08 2011 +0000 +++ b/initramfs/init Sat Aug 13 18:36:30 2011 +0000 @@ -12,7 +12,7 @@ [ -d /proc/sys ] && umount /proc echo -e "\\033[70G[ \\033[1;33mOK\\033[0;39m ]" [ -d /mnt/initramfs ] || mkdir -p /mnt/initramfs - SYS_DIR="dev bin etc boot lib sbin home root usr var" + SYS_DIR="dev bin etc boot lib sbin home root run usr var" for dir in $SYS_DIR; do cp -a /$dir /mnt/initramfs done diff -r de2f0a135cd5 -r ea6b229d8c84 initramfs/initramfs.list --- a/initramfs/initramfs.list Sat Aug 13 18:28:08 2011 +0000 +++ b/initramfs/initramfs.list Sat Aug 13 18:36:30 2011 +0000 @@ -10,7 +10,6 @@ lzlib depmod linux -linux-udf attr libcap gettext-base diff -r de2f0a135cd5 -r ea6b229d8c84 initramfs/usr/bin/tazbb --- a/initramfs/usr/bin/tazbb Sat Aug 13 18:28:08 2011 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,30 +0,0 @@ -#!/bin/sh - -LOCAL_REPOSITORY="$SLITAZ_DIR/${undigest:-$SLITAZ_VERSION}" -if [ -f $LOCAL_REPOSITORY/tazchroot.conf ]; then - . $LOCAL_REPOSITORY/tazchroot.conf -else - tazwok configure-chroot - . $LOCAL_REPOSITORY/tazchroot.conf -fi - -if [ -f $LOCAL_REPOSITORY/slitaz.conf ]; then - . $LOCAL_REPOSITORY/slitaz.conf -else - . /etc/slitaz/slitaz.conf -fi - -if [ -f $LOCAL_REPOSITORY/tazwok.conf ]; then - . $LOCAL_REPOSITORY/tazwok.conf -else - . /etc/slitaz/tazwok.conf -fi - -[ -d $chroot_dir ] || create_chroot - -if [ -x $LOCAL_REPOSITORY/chroot/$1 ]; then - mount_chroot - chroot $LOCAL_REPOSITORY/chroot $1 - umount_chroot -fi -