diff options
author | Daniel Robbins <drobbins@gentoo.org> | 2000-10-27 20:43:29 +0000 |
---|---|---|
committer | Daniel Robbins <drobbins@gentoo.org> | 2000-10-27 20:43:29 +0000 |
commit | 3f17fdeafd8e10b91b77405771dbdbef247a30bc (patch) | |
tree | f38787c2fb863446924c8507ce76c605632508bb /autoinstaller.sh | |
parent | merge fix (diff) | |
download | gentoo-2-3f17fdeafd8e10b91b77405771dbdbef247a30bc.tar.gz gentoo-2-3f17fdeafd8e10b91b77405771dbdbef247a30bc.tar.bz2 gentoo-2-3f17fdeafd8e10b91b77405771dbdbef247a30bc.zip |
removing einfo from certain places
Diffstat (limited to 'autoinstaller.sh')
-rwxr-xr-x | autoinstaller.sh | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/autoinstaller.sh b/autoinstaller.sh index f4ba669328ed..6347fc079938 100755 --- a/autoinstaller.sh +++ b/autoinstaller.sh @@ -13,8 +13,8 @@ fi cp $1 ${ROOT}/var/db/pkg/install.config if [ -z "$NODEV" ] ; then - einfo "Now setting up $OSNAME..." - einfo "Creating device nodes (this takes a minute or so)..." + echo "Now setting up $OSNAME..." + echo "Creating device nodes (this takes a minute or so)..." cd ${ROOT}/dev ${ROOT}/usr/sbin/MAKEDEV generic-i386 ${ROOT}/usr/sbin/MAKEDEV sg @@ -22,14 +22,14 @@ if [ -z "$NODEV" ] ; then ${ROOT}/usr/sbin/MAKEDEV rtc fi echo -einfo "Setting osname and architecture" +echo "Setting osname and architecture" cp ${ROOT}/etc/rc.d/config/runlevels ${ROOT}/etc/rc.d/config/runlevels.orig sed -e "s:##OSNAME##:$OSNAME:" -e "s:##ARCH##:$ARCH:" \ ${ROOT}/etc/rc.d/config/runlevels.orig > ${ROOT}/etc/rc.d/config/runlevels echo "OSNAME: $OSNAME" echo "ARCH: $ARCH" echo -einfo "Now, we are getting ${ROOT}/etc/fstab set up for your root and swap partitions..." +echo "Now, we are getting ${ROOT}/etc/fstab set up for your root and swap partitions..." cp ${ROOT}/etc/fstab ${ROOT}/etc/fstab.orig @@ -38,7 +38,7 @@ echo "Swap partition in /dev/$MYSWAPPART" sed -e "s/#ROOT#/${MYROOTPART}/" -e "s/#SWAP#/${MYSWAPPART}/" ${ROOT}/etc/fstab.orig > ${ROOT}/etc/fstab -einfo "Generating library links and cache..." +echo "Generating library links and cache..." ldconfig -r ${ROOT} case "$GMT" in |