Skip to content
Permalink
Browse files
Merge pull request #67 from samueldr-wip/fix/google-walleye-framebuffer
google-walleye: Fix early framebuffer
  • Loading branch information
samueldr committed Dec 28, 2019
2 parents 774dabf + f5ee476 commit 7803d9e
Showing 1 changed file with 19 additions and 2 deletions.
@@ -23,8 +23,25 @@
dev_keyboard = "";
flash_method = "fastboot";

# From TWRP
kernel_cmdline="androidboot.hardware=walleye androidboot.console=ttyMSM0 lpm_levels.sleep_disabled=1 user_debug=31 msm_rtb.filter=0x37 ehci-hcd.park=3 service_locator.enable=1 swiotlb=2048 firmware_class.path=/vendor/firmware loop.max_part=7 raid=noautodetect androidboot.fastboot=1 buildvariant=eng";
kernel_cmdline = lib.concatStringsSep " " [
# From TWRP
"androidboot.hardware=walleye"
"androidboot.console=ttyMSM0"
"lpm_levels.sleep_disabled=1"
"user_debug=31"
"msm_rtb.filter=0x37"
"ehci-hcd.park=3"
"service_locator.enable=1"
"swiotlb=2048"
"firmware_class.path=/vendor/firmware"
"loop.max_part=7"
"raid=noautodetect"
"androidboot.fastboot=1"
"buildvariant=eng"

# Using `quiet` fixes early framebuffer init, for stage-1
"quiet"
];

generate_bootimg = "true";
bootimg_qcdt = false;

0 comments on commit 7803d9e

Please sign in to comment.