diff options
author | Christian Poessinger <christian@poessinger.com> | 2019-06-16 13:06:43 +0200 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2019-11-05 14:10:21 +0100 |
commit | feab8b14a1f7a90725180b89658def7878bccc94 (patch) | |
tree | 5a9edce16e61cfd1e0c3453e150e6b36a0451a39 /scripts | |
parent | 0c8b3a100263a0be6ab54e1f0dd384ddaf76720c (diff) | |
download | vyos-build-feab8b14a1f7a90725180b89658def7878bccc94.tar.gz vyos-build-feab8b14a1f7a90725180b89658def7878bccc94.zip |
T1327: add serial console (115200,8n1) to ISO kernel command-line
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/live-build-config | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/live-build-config b/scripts/live-build-config index 9b7c2d67..1b3b4541 100755 --- a/scripts/live-build-config +++ b/scripts/live-build-config @@ -35,7 +35,8 @@ util.check_build_config() lb_config_tmpl = """ lb config noauto \ --architectures {{architecture}} \ - --bootappend-live "boot=live components hostname=vyos username=live nopersistence noautologin nonetworking union=overlay" \ + --bootappend-live "boot=live components hostname=vyos username=live nopersistence noautologin nonetworking union=overlay console=ttyS0,115200 console=tty0" \ + --bootappend-live-failsafe "live components memtest noapic noapm nodma nomce nolapic nomodeset nosmp nosplash vga=normal console=ttyS0,115200 console=tty0" \ --linux-flavours {{kernel_flavor}} \ --linux-packages linux-image-{{kernel_version}} \ --bootloader syslinux,grub-efi \ |