File tree 1 file changed +19
-2
lines changed
1 file changed +19
-2
lines changed Original file line number Diff line number Diff line change 23
23
dev_keyboard = "" ;
24
24
flash_method = "fastboot" ;
25
25
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
+ ] ;
28
45
29
46
generate_bootimg = "true" ;
30
47
bootimg_qcdt = false ;
You can’t perform that action at this time.
0 commit comments