We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba1bf99 commit a5d1866Copy full SHA for a5d1866
device.h
@@ -8,7 +8,7 @@
8
9
#define RAM_SIZE (1024 * 1024 * 1024)
10
#define DTB_SIZE (1 * 1024 * 1024)
11
-#define INITRD_SIZE (65 * 1024 * 1024)
+#define INITRD_SIZE (150 * 1024 * 1024)
12
13
#define SCREEN_WIDTH 1024
14
#define SCREEN_HEIGHT 768
minimal.dts
@@ -17,9 +17,9 @@
17
chosen {
18
bootargs = "earlycon console=ttyS0";
19
stdout-path = "serial0";
20
- /* Reserve 65MiB for initrd image */
21
- linux,initrd-start = <0x3be00000>; /* @ 958 MiB (958 * 1024 * 1024) */
22
- linux,initrd-end = <0x3fefffff>; /* @1023 MiB (511 * 1024 * 1024 - 1) */
+ /* Reserve 150 MiB for initrd image */
+ linux,initrd-start = <0x36900000>; /* @ 923 MiB (958 * 1024 * 1024) */
+ linux,initrd-end = <0x3fefffff>; /* @1023 MiB (1023 * 1024 * 1024 - 1) */
23
};
24
25
cpus {
0 commit comments