1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-15 02:43:24 +03:00
mobile-nixos/devices/asus-flo/default.nix
2019-11-07 17:23:33 -05:00

42 lines
1.1 KiB
Nix

{ config, lib, pkgs, ... }:
{
mobile.device.name = "asus-flo";
mobile.device.info = {
# TODO : make kernel part of options.
kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
format_version = "0";
name = "Nexus 7 2013 Wifi";
manufacturer = "Asus";
date = "";
keyboard = false;
nonfree = "????";
dtb = "";
modules = "";
modules_initfs = "";
external_storage = false;
flash_method = "fastboot";
arch = "armhf";
dev_touchscreen = "/dev/input/event1";
screen_width = "1200";
screen_height = "1920";
generate_bootimg = true;
flash_offset_base = "0x80200000";
kernel_cmdline = "xxxxxxxxxxxxxxxxxxxxxxxxxxconsole=ttyMSM0,115200,n8 user_debug=31 msm_rtb.filter=0x3F ehci-hcd.park=3 vmalloc=340M";
flash_offset_kernel = "0x00008000";
flash_offset_ramdisk = "0x02000000";
flash_offset_second = "0x00f00000";
flash_offset_tags = "0x00000100";
flash_pagesize = "2048";
};
mobile.hardware = {
soc = "qualcomm-apq8064-1aa";
ram = 1024 * 2;
screen = {
width = 1200; height = 1920;
};
};
mobile.system.type = "android";
}