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

56 lines
1.3 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.hardware = {
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
mobile.boot.stage-1 = {
kernel.package = pkgs.callPackage ./kernel { };
};
2020-05-24 09:43:53 +03:00
mobile.device.firmware = pkgs.callPackage ./firmware {};
mobile.system.android.bootimg = {
flash = {
offset_base = "0x10000000";
offset_kernel = "0x00008000";
offset_ramdisk = "0x02000000";
offset_second = "0x00f00000";
offset_tags = "0x00000100";
pagesize = "2048";
};
};
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;
}