1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 19:23:01 +03:00
mobile-nixos/devices/xiaomi-tissot/default.nix

30 lines
994 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
let
inherit (config.mobile.device) name;
in {
mobile.device.name = "xiaomi-tissot";
mobile.device.info = {
name = "Xiaomi A1";
screen_width = 1080;
screen_height = 1920;
kernel_cmdline = "androidboot.hardware=qcom msm_rtb.filter=0x237 ehci-hcd.park=3 lpm_levels.sleep_disabled=1 androidboot.bootdevice=7824900.sdhci earlycon=msm_hsl_uart,0x78af000 androidboot.selinux=permissive buildvariant=eng";
flash_offset_base = "0x80000000";
flash_offset_kernel = "0x00008000";
flash_offset_second = "0x00f00000";
flash_offset_ramdisk = "0x01000000";
flash_offset_tags = "0x00000100";
flash_pagesize = "2048";
kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
#dtb = "${kernel}/dtbs/msm8953-qrd-sku3-tissot.dtb";
};
mobile.hardware = {
soc = "qualcomm-msm8953";
ram = 1024 * 4;
screen = {
width = 1080; height = 1920;
};
};
mobile.system.type = "android";
}