mirror of
https://github.com/NixOS/mobile-nixos.git
synced 2024-12-16 20:21:32 +03:00
motorola-surfna: Clean-up device description
This commit is contained in:
parent
f67bbf99d9
commit
fe5a135992
@ -1,26 +1,22 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
/*
|
|
||||||
* This file has been generated by autoport.
|
|
||||||
* **Do not** open a Pull Request without having verified the port works.
|
|
||||||
*/
|
|
||||||
{
|
{
|
||||||
mobile.device.name = "motorola-surfna";
|
mobile.device.name = "motorola-surfna";
|
||||||
mobile.device.identity = {
|
mobile.device.identity = {
|
||||||
name = "moto e6";
|
name = "Moto E6";
|
||||||
manufacturer = "motorola";
|
manufacturer = "Motorola";
|
||||||
};
|
};
|
||||||
|
|
||||||
mobile.hardware = {
|
mobile.hardware = {
|
||||||
soc = "qualcomm-msm8937";
|
soc = "qualcomm-msm8940";
|
||||||
ram = 1024 * 0/* (in MB) To be filled by the user */;
|
ram = 1024 * 2;
|
||||||
screen = {
|
screen = {
|
||||||
width = 0/* To be filled by the user */; height = 0/* To be filled by the user */;
|
width = 720; height = 1440;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
mobile.boot.stage-1 = {
|
mobile.boot.stage-1 = {
|
||||||
kernel.package = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
|
kernel.package = pkgs.callPackage ./kernel { };
|
||||||
};
|
};
|
||||||
|
|
||||||
mobile.system.android = {
|
mobile.system.android = {
|
||||||
@ -44,37 +40,15 @@
|
|||||||
mobile.system.vendor.partition = "/dev/disk/by-partlabel/vendor";
|
mobile.system.vendor.partition = "/dev/disk/by-partlabel/vendor";
|
||||||
|
|
||||||
boot.kernelParams = [
|
boot.kernelParams = [
|
||||||
# Extracted from an Android boot image
|
|
||||||
"console=ttyMSM0,115200,n8"
|
|
||||||
"androidboot.console=ttyMSM0"
|
|
||||||
"androidboot.hardware=qcom"
|
|
||||||
"user_debug=30"
|
|
||||||
"msm_rtb.filter=0x237"
|
|
||||||
"ehci-hcd.park=3"
|
|
||||||
"androidboot.bootdevice=7824900.sdhci"
|
|
||||||
"lpm_levels.sleep_disabled=1"
|
|
||||||
"earlycon=msm_serial_dm,0x78B0000"
|
|
||||||
"vmalloc=300M"
|
|
||||||
"firmware_class.path=/vendor/firmware_mnt/image"
|
|
||||||
"androidboot.usbconfigfs=true"
|
|
||||||
"loop.max_part=7"
|
|
||||||
"printk.devkmsg=on"
|
|
||||||
"buildvariant=user"
|
|
||||||
"veritykeyid=id:b640f6ee9102b88daa3450b13ef25fc9eb143d63"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
mobile.system.type = "android";
|
mobile.system.type = "android";
|
||||||
|
|
||||||
/* The usb mode could not be detected.
|
mobile.usb.mode = "gadgetfs";
|
||||||
* Assuming this is an older device, android_usb should be used.
|
mobile.usb.idVendor = "22B8"; # Motorola
|
||||||
* For a newer device, gadgetfs is to be used.
|
mobile.usb.idProduct = "2E81"; # "Moto G"
|
||||||
*/
|
|
||||||
mobile.usb.mode = null;
|
|
||||||
|
|
||||||
/* To be changed by the author, though those may or may work with any device. */
|
|
||||||
# Google
|
|
||||||
mobile.usb.idVendor = "18D1";
|
|
||||||
# "Nexus 4"
|
|
||||||
mobile.usb.idProduct = "D001";
|
|
||||||
|
|
||||||
|
mobile.usb.gadgetfs.functions = {
|
||||||
|
rndis = "rndis_bam.rndis";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user