kernel cli: rw by default

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2018-10-08 00:00:00 +00:00
parent a4b8686684
commit ce216152dd
4 changed files with 38 additions and 22 deletions

2
run
View File

@@ -46,7 +46,7 @@ def main(args, extra_args=None):
# * https://unix.stackexchange.com/questions/397939/turning-off-kaslr-to-debug-linux-kernel-using-qemu-and-gdb
# * https://stackoverflow.com/questions/44612822/unable-to-debug-kernel-with-qemu-gdb/49840927#49840927
# Turned on by default since v4.12
kernel_cli = 'console_msg_format=syslog nokaslr norandmaps panic=-1 printk.devkmsg=on printk.time=y'
kernel_cli = 'console_msg_format=syslog nokaslr norandmaps panic=-1 printk.devkmsg=on printk.time=y rw'
if args.kernel_cli is not None:
kernel_cli += ' {}'.format(args.kernel_cli)
kernel_cli_after_dash = ''