[Bug 870514] New: yast-bootloader configures grub2 to listen to serial on openqa
https://bugzilla.novell.com/show_bug.cgi?id=870514 https://bugzilla.novell.com/show_bug.cgi?id=870514#c0 Summary: yast-bootloader configures grub2 to listen to serial on openqa Classification: openSUSE Product: openSUSE Factory Version: 13.2 Milestone 0 Platform: Other OS/Version: Other Status: NEW Severity: Major Priority: P5 - None Component: YaST2 AssignedTo: yast2-maintainers@suse.de ReportedBy: coolo@suse.com QAContact: jsrain@suse.com CC: ohering@suse.com Found By: Development Blocker: --- openqa uses console=ttyS0 console=tty to get a copy of the boot log on serial device for logging, but this causes yast to configure grub to listen to serial console. This is incorrect and I reverted the change in Factory - any console= without ttyS should forbid this feature. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=870514 https://bugzilla.novell.com/show_bug.cgi?id=870514#c1 Josef Reidinger <jreidinger@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jreidinger@suse.com AssignedTo|yast2-maintainers@suse.de |mchang@suse.com --- Comment #1 from Josef Reidinger <jreidinger@suse.com> 2014-03-27 07:35:21 UTC --- michael - you add such support, so reassign to you -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=870514 https://bugzilla.novell.com/show_bug.cgi?id=870514#c2 --- Comment #2 from Michael Chang <mchang@suse.com> 2014-03-27 09:25:00 UTC --- Afaik, the last occurrence of console= will be used for opening /dev/console. I know this when using this regular expression .. == type = Builtins.regexpsub(append, "^.*console=([[:alpha:]]+)[[:digit:]]+,*[[:digit:]]*[noe]*[[:digit:]]*.*[[:space:]]*.*$", "\\1") return "" if type != "ttyS" || args.empty? == It should match the last occurrence because greedy match (per default). I did test above case and it works for me .. ? Is my greedy assumption wrong ?? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=870514 https://bugzilla.novell.com/show_bug.cgi?id=870514#c3 --- Comment #3 from Michael Chang <mchang@suse.com> 2014-03-27 09:28:59 UTC --- Oh wait .. I did not know console=tty is valid (I tested with console=tty0), should change the match like this. == type = Builtins.regexpsub(append, "^.*console=([[:alpha:]]+)[[:digit:]]*,*[[:digit:]]*[noe]*[[:digit:]]*.*[[:space:]]*.*$", "\\1") return "" if type != "ttyS" || args.empty? == "use [[:digit:]]* not [[:digit:]]+." -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=870514 https://bugzilla.novell.com/show_bug.cgi?id=870514#c4 --- Comment #4 from Stephan Kulow <coolo@suse.com> 2014-09-02 14:28:02 CEST --- was this fixed? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
https://bugzilla.novell.com/show_bug.cgi?id=870514 https://bugzilla.novell.com/show_bug.cgi?id=870514#c5 Michael Chang <mchang@suse.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #5 from Michael Chang <mchang@suse.com> 2014-09-03 02:43:19 UTC --- Yes. https://github.com/yast/yast-bootloader/commit/ab39a94c521ecc9a69f19d9cfb75a... -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.
participants (1)
-
bugzilla_noreply@novell.com