diff options
author | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-10-14 14:43:26 -0700 |
---|---|---|
committer | Stephen Hemminger <stephen.hemminger@vyatta.com> | 2010-10-14 14:43:26 -0700 |
commit | 9a09a382f874510f3427cf0a212b87fdb5b8e8d2 (patch) | |
tree | e88871d370f8f8b4ab5e1e0a93b744eca95847db /scripts | |
parent | ea8d0e68f28fbcc34761f2e53829e6045a455f60 (diff) | |
download | vyatta-cfg-system-9a09a382f874510f3427cf0a212b87fdb5b8e8d2.tar.gz vyatta-cfg-system-9a09a382f874510f3427cf0a212b87fdb5b8e8d2.zip |
Fix regexp used for disabling up serial with Xen
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install-system | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/install-system b/scripts/install-system index d6e0cebf..adda7339 100755 --- a/scripts/install-system +++ b/scripts/install-system @@ -1418,7 +1418,7 @@ setup_xen_extras () { # Comment out serial port entry and add Xen console entry to inittab. inittab=$rootfsdir/etc/inittab - sed -i -e 's/T0/#T0/' $inittab + sed -i -e 's/^T0/#T0/' $inittab echo "" >> $inittab echo "h0:12345:respawn:/sbin/getty 38400 hvc0" >> $inittab } |