aarch64 ram starts at 0x40000000

pull/2/head
Daniel Barlow 2023-11-05 15:18:19 +00:00
parent a135cb1217
commit 46991e2761
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ lib, pkgs, config, ...}:
{ lib, lim, pkgs, config, ...}:
{
config = {
kernel.config = {
@ -12,5 +12,6 @@
OF = "y";
# USE_OF = "y";
};
hardware.ram.startAddress = lim.parseInt "0x40000000";
};
}