Update of /cvsroot/devil-linux/build/scripts
In directory sc8-pr-cvs1:/tmp/cvs-serv14411/scripts
Modified Files:
mk_devices util-linux
Log Message:
- initrd scripts now use devfs device names
- install-usb now uses fat file system and the plain bootcd.iso file
Index: mk_devices
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/mk_devices,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -d -r1.14 -r1.15
--- mk_devices 13 Oct 2003 17:36:08 -0000 1.14
+++ mk_devices 8 Nov 2003 21:04:23 -0000 1.15
@@ -51,22 +51,22 @@
case $1 in
install )
- echo "creating devices in RAMDISK"
- pushd $CDDIR/dev > /dev/null
- $MYDIR/MAKEDEV generic
- mkdir -p shm || exit 1
- mkdir -p net || exit 1
- mknod net/tun c 10 200 || exit 1
- popd > /dev/null
- makedevices_smartarray $CDDIR/dev
+ #echo "creating devices in RAMDISK"
+ #pushd $CDDIR/dev > /dev/null
+ #$MYDIR/MAKEDEV generic
+ #mkdir -p shm || exit 1
+ #mkdir -p net || exit 1
+ #mknod net/tun c 10 200 || exit 1
+ #popd > /dev/null
+ #makedevices_smartarray $CDDIR/dev
- echo "creating devices in INITRD"
- pushd $INITRDDIR/dev > /dev/null
+ #echo "creating devices in INITRD"
+ #pushd $INITRDDIR/dev > /dev/null
$MYDIR/MAKEDEV generic
#$MYDIR/MAKEDEV std fd fd0 fd1 console ram hda hdb hdc hdd hde hdf hdg hdh \
# sda sdb sdc sdd sde sdf sdg sdh scd0 scd1 scd2 scd3 scd4 scd5 scd6
- popd > /dev/null
- makedevices_smartarray $INITRDDIR/dev
+ #popd > /dev/null
+ #makedevices_smartarray $INITRDDIR/dev
;;
* )
Index: util-linux
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/util-linux,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- util-linux 13 Oct 2003 17:36:09 -0000 1.12
+++ util-linux 8 Nov 2003 21:04:23 -0000 1.13
@@ -28,6 +28,10 @@
build )
./configure || exit 1
replace_str defines.h "#define ENABLE_NLS" ""
+ #make $PMAKE HAVE_SLN=yes ADD_RAW=yes DISABLE_NLS=yes -C lib || exit 1
+ #make $PMAKE HAVE_SLN=yes ADD_RAW=yes DISABLE_NLS=yes -C mount LDFLAGS="-s -static" mount || exit 1
+ #cp mount/mount mount/mount-static || exit 1
+ #make -C mount clean || exit 1
make $PMAKE HAVE_SLN=yes ADD_RAW=yes DISABLE_NLS=yes || exit 1
strip_debug
;;
@@ -41,6 +45,7 @@
cp -dpR $WORKDIR/tmp/etc $ETCDIR/ || exit 1
rm -rf $WORKDIR/tmp/etc || exit 1
cp -dpR $WORKDIR/tmp/* $CDDIR/ || exit 1
+ #cp -dpR mount/mount-static $INITRDDIR/sbin/mount || exit 1
rm -rf $WORKDIR/tmp || exit 1
;;
|