summaryrefslogtreecommitdiff
path: root/packages/altboot/files/altboot-menu/Advanced/40-bootNFS
diff options
context:
space:
mode:
authorMatthias Hentges <oe@hentges.net>2006-01-23 18:21:48 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-01-23 18:21:48 +0000
commit782dc3c20561aea0fb13529d543fb814fda208f7 (patch)
tree3cd4fdb7b3cf6ec9f649c3bb8390db44b6bfe7b9 /packages/altboot/files/altboot-menu/Advanced/40-bootNFS
parent6b447a6a8392db239d0f57457d5b59b0ec30aec0 (diff)
altboot:
- Fixed a bug where the /media/ROM mountpoint wasn't moved into the new rootfs - Added support for booting off USB storage devices
Diffstat (limited to 'packages/altboot/files/altboot-menu/Advanced/40-bootNFS')
-rw-r--r--packages/altboot/files/altboot-menu/Advanced/40-bootNFS4
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS
index b5b93a5929..e83a2867c5 100644
--- a/packages/altboot/files/altboot-menu/Advanced/40-bootNFS
+++ b/packages/altboot/files/altboot-menu/Advanced/40-bootNFS
@@ -36,7 +36,7 @@ run_module() {
# After the PCMCIA service is started, an inserted WLAN card should automatically
# activate itself.
- /etc/init.d/pcmcia start || die "/etc/init.d/pcmcia/start failed!"
+ /etc/init.d/pcmcia start >/dev/null 2>&1 || die "/etc/init.d/pcmcia/start failed!"
nfs_host="`cat /etc/fstab | grep -v ^# | grep nfs | awk '{print $1}'|sed -n "s/\(.*\)\:\(.*\)/\1/p" `"
nfs_mounts="`cat /etc/fstab | grep -v ^# | grep nfs | awk '{print $1}'`"
@@ -67,7 +67,7 @@ run_module() {
then
echo "Restarting udhcpc"
killall udhcpc
- udhcpc -i wlan0 -H `cat /etc/hostname`
+ udhcpc -i wlan0 -H `cat /etc/hostname` >/dev/null 2>&1
else
die "Failed to activate WLAN!"
break