Skip to content
Snippets Groups Projects
Commit 18a87b11 authored by Roberto Oliveira's avatar Roberto Oliveira Committed by Natanael Copa
Browse files

scripts/mkimg.base.sh: add console=hvc0 for ppc64le grub config

set console=hvc0 via boot option. This configuration make init to add
hvc0 to /etc/inittab and /etc/securetty. This is needed to allow login
with 'root' user.
parent 8612a1ba
No related branches found
No related tags found
No related merge requests found
......@@ -193,6 +193,7 @@ build_grubefi_img() {
section_grubieee1275() {
[ "$ARCH" = ppc64le ] || return 0
[ "$output_format" = "iso" ] || return 0
kernel_cmdline="$kernel_cmdline console=hvc0"
build_section grub_cfg boot/grub/grub.cfg $(grub_gen_config | checksum)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment