1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 11:03:37 +03:00

motorola-addison: Remove console= argument

Ah! It looks like this is not a constant, but a common failure mode
among android-based devices!

In dmesg:

```
Warning: unable to open an initial console.
```

Simply removing the `console=` fixes the console.

See f295dc1739 for a similar instance of
the issue.
This commit is contained in:
Samuel Dionne-Riel 2019-12-03 22:28:41 -05:00
parent 2bf8158f3a
commit ef09e30679

View File

@ -17,7 +17,17 @@
dev_touchscreen_calibration = "";
dev_keyboard = "";
flash_method = "fastboot";
kernel_cmdline = "console=ttyHSL0,115200,n8 androidboot.console=ttyHSL0 androidboot.hardware=qcom user_debug=30 msm_rtb.filter=0x237 ehci-hcd.park=3 androidboot.bootdevice=7824900.sdhci lpm_levels.sleep_disabled=1 vmalloc=350M buildvariant=userdebug";
kernel_cmdline = lib.concatStringsSep " " [
"androidboot.console=ttyHSL0"
"androidboot.hardware=qcom"
"user_debug=30"
"msm_rtb.filter=0x237"
"ehci-hcd.park=3"
"androidboot.bootdevice=7824900.sdhci"
"lpm_levels.sleep_disabled=1"
"vmalloc=350M"
"buildvariant=userdebug"
];
generate_bootimg = true;
bootimg_qcdt = true;
flash_offset_base = "0x80000000";