Skip to content

Commit 7803d9e

Browse files
authored
Merge pull request #67 from samueldr-wip/fix/google-walleye-framebuffer
google-walleye: Fix early framebuffer
2 parents 774dabf + f5ee476 commit 7803d9e

File tree

1 file changed

+19
-2
lines changed

1 file changed

+19
-2
lines changed

devices/google-walleye/default.nix

+19-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,25 @@
2323
dev_keyboard = "";
2424
flash_method = "fastboot";
2525

26-
# From TWRP
27-
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";
26+
kernel_cmdline = lib.concatStringsSep " " [
27+
# From TWRP
28+
"androidboot.hardware=walleye"
29+
"androidboot.console=ttyMSM0"
30+
"lpm_levels.sleep_disabled=1"
31+
"user_debug=31"
32+
"msm_rtb.filter=0x37"
33+
"ehci-hcd.park=3"
34+
"service_locator.enable=1"
35+
"swiotlb=2048"
36+
"firmware_class.path=/vendor/firmware"
37+
"loop.max_part=7"
38+
"raid=noautodetect"
39+
"androidboot.fastboot=1"
40+
"buildvariant=eng"
41+
42+
# Using `quiet` fixes early framebuffer init, for stage-1
43+
"quiet"
44+
];
2845

2946
generate_bootimg = "true";
3047
bootimg_qcdt = false;

0 commit comments

Comments
 (0)