diff options
author | John Estabrook <jestabro@sentrium.io> | 2019-04-23 15:39:41 -0500 |
---|---|---|
committer | John Estabrook <jestabro@sentrium.io> | 2019-04-23 15:47:52 -0500 |
commit | da4e1fa442891324809993529dd4ae0d9a419af4 (patch) | |
tree | a5d68a91b58e1058b6e4da57994298721cdf27bf /scripts/vyatta-grub-setup | |
parent | ad0de9615f04ed1e172e9bf8430857cb911d5fa3 (diff) | |
download | vyatta-cfg-system-da4e1fa442891324809993529dd4ae0d9a419af4.tar.gz vyatta-cfg-system-da4e1fa442891324809993529dd4ae0d9a419af4.zip |
T1327: Set the serial console speed to 115200 by default
Set the default serial console speed to 115200 in system update scripts,
to accord with the changes in the build scripts.
Diffstat (limited to 'scripts/vyatta-grub-setup')
-rwxr-xr-x | scripts/vyatta-grub-setup | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/vyatta-grub-setup b/scripts/vyatta-grub-setup index 8f0734ed..236b41ea 100755 --- a/scripts/vyatta-grub-setup +++ b/scripts/vyatta-grub-setup @@ -69,9 +69,9 @@ fi pass_reset=/opt/vyatta/sbin/standalone_root_pw_reset # Output to both console (last device is /dev/console) -vty_console="console=ttyS0,9600 console=tty0" -serial_console="console=tty0 console=ttyS0,9600" -usb_console="console=tty0 console=ttyUSB0,9600" +vty_console="console=ttyS0,115200 console=tty0" +serial_console="console=tty0 console=ttyS0,115200" +usb_console="console=tty0 console=ttyUSB0,115200" # If vga_logo is set, enable use of the VGA monitor for displaying the # logo during boot. The "vga=" boot command specifies a VGA mode that @@ -152,7 +152,7 @@ fi echo -e "set default=$default_console" echo "set timeout=5" # set serial console options - echo -e "serial --unit=0 --speed=9600" + echo -e "serial --unit=0 --speed=115200" echo "terminal_output --append serial" echo "terminal_input serial console" |