1
1
mirror of https://github.com/NixOS/mobile-nixos.git synced 2024-12-14 18:21:41 +03:00

asus-flo: Fix for new kernel package option

This commit is contained in:
Samuel Dionne-Riel 2020-05-24 18:38:58 -04:00
parent 879505199a
commit 350f8549cb

View File

@ -7,11 +7,6 @@
manufacturer = "Asus";
};
mobile.device.info = {
# TODO : make kernel part of options.
kernel = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
};
mobile.hardware = {
soc = "qualcomm-apq8064-1aa";
ram = 1024 * 2;
@ -20,6 +15,10 @@
};
};
mobile.boot.stage-1 = {
kernel.package = pkgs.callPackage ./kernel { kernelPatches = pkgs.defaultKernelPatches; };
};
mobile.system.android.bootimg = {
flash = {
offset_base = "0x80200000";