1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-17 21:11:34 +03:00
mobile-nixos/devices/asus-z00t/default.nix

55 lines
1.4 KiB
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
2018-06-17 21:53:20 +03:00
{
mobile.device.name = "asus-z00t";
mobile.device.identity = {
name = "Zenfone 2 Laser/Selfie (1080p)";
manufacturer = "Asus";
};
mobile.device.info = rec {
bootimg_qcdt = true;
flash_offset_base = "0x10000000";
flash_offset_kernel = "0x00008000";
flash_offset_ramdisk = "0x02000000";
flash_offset_second = "0x00f00000";
flash_offset_tags = "0x00000100";
flash_pagesize = "2048";
# TODO : make kernel part of options.
kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
2020-04-10 05:17:39 +03:00
firmware = pkgs.callPackage ./firmware {};
2019-04-14 07:48:29 +03:00
dtb = "${kernel}/dtbs/asus-z00t.img";
};
mobile.hardware = {
# This could also be pre-built option types?
soc = "qualcomm-msm8939";
# 3GB for the specific revision supported.
# When this will be actually used, this may be dropped to 2, and/or
# document all ram types as a list and work with min/max of those.
ram = 1024 * 3;
2018-06-17 03:56:44 +03:00
screen = {
width = 1080; height = 1920;
};
};
2018-06-27 04:52:09 +03:00
boot.kernelParams = [
"androidboot.hardware=qcom"
"ehci-hcd.park=3"
"androidboot.bootdevice=7824900.sdhci"
"lpm_levels.sleep_disabled=1"
"androidboot.selinux=permissive"
];
2020-01-14 01:58:07 +03:00
mobile.usb.mode = "android_usb";
2020-01-13 22:56:46 +03:00
# Google
mobile.usb.idVendor = "18D1";
# "Nexus 4"
mobile.usb.idProduct = "D001";
mobile.system.type = "android";
2020-04-10 04:53:15 +03:00
mobile.quirks.qualcomm.wcnss-wlan.enable = true;
}