diff options
author | Matt Wilson <msw@redhat.com> | 2000-06-14 05:38:30 +0000 |
---|---|---|
committer | Matt Wilson <msw@redhat.com> | 2000-06-14 05:38:30 +0000 |
commit | 3bc12f7d7252c2e152eab3081027c1f801d0a367 (patch) | |
tree | 805d83068ae002e84bd024b4203e6b02a6e3555e /scripts/upd-instroot | |
parent | d653183161aecda319c17643eefd48d64f6571b8 (diff) | |
download | anaconda-3bc12f7d7252c2e152eab3081027c1f801d0a367.tar.gz anaconda-3bc12f7d7252c2e152eab3081027c1f801d0a367.tar.xz anaconda-3bc12f7d7252c2e152eab3081027c1f801d0a367.zip |
ok, we should be getting some sparc64 images now
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 0dcb4e1e9..a74b87aff 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -276,6 +276,7 @@ usr/bin/ftp usr/bin/head usr/bin/less usr/bin/lsattr* +usr/bin/maketilo usr/bin/mattrib usr/bin/mbadblocks usr/bin/mcd @@ -465,6 +466,10 @@ for p in $DEST $DESTGR; do rm -rf $p/bin rm -rf $p/sbin + if [ $ARCH = sparc -a $p = $DESTGR ]; then + mkdir -p $p/usr/lib/anaconda-runtime/boot + (cd $p/boot; find -name "*.b") | (cd $p/boot; /bin/cpio --quiet -pdmu $p/usr/lib/anaconda-runtime/boot) + fi rm -rf $p/boot $p/home $p/root $p/tmp find $p -name "*.a" | grep -v "usr/X11R6/lib/modules" | xargs rm -rf |