diff options
author | Matt Wilson <msw@redhat.com> | 1999-09-11 15:43:56 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 1999-09-11 15:43:56 +0000 |
commit | 67b133020bb2a5ba90005ac6da55a0d5d1424799 (patch) | |
tree | 68eae41b81639206b3de7dc12b4a3c1335144048 /upd-instroot | |
parent | e0e974477f07b1eb16c7553528b3f64d5d520ce5 (diff) | |
download | anaconda-67b133020bb2a5ba90005ac6da55a0d5d1424799.tar.gz anaconda-67b133020bb2a5ba90005ac6da55a0d5d1424799.tar.xz anaconda-67b133020bb2a5ba90005ac6da55a0d5d1424799.zip |
patch from jj, misc fixes
Diffstat (limited to 'upd-instroot')
-rwxr-xr-x | upd-instroot | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/upd-instroot b/upd-instroot index 39fc2bd10..49f0bbd2e 100755 --- a/upd-instroot +++ b/upd-instroot @@ -13,11 +13,15 @@ echo HOMEDIR $HOMEDIR pythondeps() { DIR=$1 + mkdir -p $DIR/proc + mount -t proc /proc $DIR/proc (chroot $DIR /usr/bin/anaconda -m dir://mnt/source --test --text --traceonly; \ cd $DIR; find usr/lib/python* -type f | sed 's,^,/,' ) | sort | uniq -u | sed s,^,./, | while read fn; do [ ! -d $DIR/$fn ] && rm $DIR/$fn done + umount $DIR/proc + rmdir $DIR/proc } SRC=$1/RedHat/RPMS @@ -36,7 +40,8 @@ echo "DESTGR is $DESTGR" PACKAGES="glibc-2 ldconfig setup e2fsprogs-1 XFree86-libs XFree86-SVGA XFree86-S3 XFree86-S3V XFree86-Mach32 XFree86-Mach64 XFree86-FBDev XFree86-75dpi-fonts XFree86-I128 - XFree86-3DLabs XFree86-VGA16 XFree86-3. xpm-3 glib- gtk+- + XFree86-3DLabs XFree86-VGA16 XFree86-Sun + XFree86-3. xpm-3 glib- gtk+- gnome-libs python-1 newt imlib-1 libpng libtiff libjpeg- libtermcap-2 zlib rpm rpm-devel ash- bash- pygtk- pygnome- util-linux procps esound-0 audiofile-0 kernel-pcmcia-cs @@ -121,6 +126,9 @@ usr/X11R6/bin/XF86_SVGA usr/X11R6/bin/XF86_S3 usr/X11R6/bin/XF86_S3V usr/X11R6/bin/XF86_VGA16 +usr/X11R6/bin/XsunMono +usr/X11R6/bin/Xsun +usr/X11R6/bin/Xsun24 usr/X11R6/bin/Xtest usr/X11R6/lib/X11/fonts/75dpi/cour* usr/X11R6/lib/X11/fonts/75dpi/helv* |