1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 04:51:31 +03:00
mobile-nixos/devices/motorola-addison/default.nix

46 lines
1.2 KiB
Nix
Raw Normal View History

2018-11-18 02:24:55 +03:00
{ config, lib, pkgs, ... }:
{
mobile.device.name = "motorola-addison";
2019-06-10 02:32:37 +03:00
mobile.device.info = rec {
name = "Moto Z Play";
2018-11-18 02:24:55 +03:00
manufacturer = "Motorola";
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"
];
2018-11-18 02:24:55 +03:00
bootimg_qcdt = true;
flash_offset_base = "0x80000000";
flash_offset_kernel = "0x00008000";
flash_offset_ramdisk = "0x01000000";
flash_offset_second = "0x00f00000";
flash_offset_tags = "0x00000100";
flash_pagesize = "2048";
# TODO : make kernel part of options.
kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
2019-06-10 02:32:37 +03:00
dtb = "${kernel}/dtbs/motorola-addison.img";
2018-11-18 02:24:55 +03:00
};
mobile.hardware = {
soc = "qualcomm-msm8953";
ram = 1024 * 3;
screen = {
width = 1080; height = 1920;
};
};
mobile.usb.mode = "android_usb";
# Google
mobile.usb.idVendor = "18D1";
# "Nexus 4"
mobile.usb.idProduct = "D001";
mobile.system.type = "android";
2018-11-18 02:24:55 +03:00
}