diff options
author | Bill Nottingham <notting@redhat.com> | 2000-12-28 16:38:42 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-12-28 16:38:42 +0000 |
commit | f3424ca2ddbdca363d5f6a480145bf23d9763347 (patch) | |
tree | 3e099f38185fbc159a88f9dcdc292b54098883d2 /scripts/upd-instroot | |
parent | 120a28b78ac7cb8c2c6b41e3e4574ad41ff1ceee (diff) | |
download | anaconda-f3424ca2ddbdca363d5f6a480145bf23d9763347.tar.gz anaconda-f3424ca2ddbdca363d5f6a480145bf23d9763347.tar.xz anaconda-f3424ca2ddbdca363d5f6a480145bf23d9763347.zip |
turn on ia64 graphical install
put linux terminfo file in text install
use dist-7.1, not dist-7.0
Diffstat (limited to 'scripts/upd-instroot')
-rwxr-xr-x | scripts/upd-instroot | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/scripts/upd-instroot b/scripts/upd-instroot index 33d011628..3bffbfc18 100755 --- a/scripts/upd-instroot +++ b/scripts/upd-instroot @@ -23,9 +23,6 @@ if [ -z "$ARCH" ]; then fi NEEDGR=yes -if [ $ARCH = ia64 ]; then - NEEDGR="" -fi prunePackageList() { PACKAGEPATH=$1 @@ -222,6 +219,7 @@ usr/lib/rpm/rpmrc usr/share/locale/*/LC_MESSAGES/anaconda.mo usr/sbin/anaconda usr/sbin/anaconda-runrescue +usr/share/terminfo/l/linux usr/share/doc/kon2*/terminfo.kon usr/share/kudzu/pcitable usr/share/pci.ids @@ -579,7 +577,7 @@ for p in $DEST $DESTGR; do if [ -x /usr/bin/runroot ]; then REALPATH=`(cd $p; /bin/pwd)` - runroot dist-7.0 --onlyone --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/scrubtree $REALPATH" + runroot dist-7.1 --onlyone --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/scrubtree $REALPATH" else $p/usr/lib/anaconda-runtime/scrubtree $p fi @@ -628,7 +626,7 @@ cd - echo -n -e "Removing unused python files in hdimage... " if [ -x /usr/bin/runroot ]; then REALPATH=`(cd $DEST; /bin/pwd)` - runroot dist-7.0 --onlyone --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/pythondeps $REALPATH" + runroot dist-7.1 --onlyone --arch $ARCH "cd $REALPATH\; usr/lib/anaconda-runtime/pythondeps $REALPATH" else $DEST/usr/lib/anaconda-runtime/pythondeps $DEST fi |