File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 6
6
7
7
/* RAM */
8
8
9
- #define RAM_SIZE (512 * 1024 * 1024)
9
+ #define RAM_SIZE (1024 * 1024 * 1024)
10
10
#define DTB_SIZE (1 * 1024 * 1024)
11
11
#define INITRD_SIZE (65 * 1024 * 1024)
12
12
Original file line number Diff line number Diff line change 18
18
bootargs = "earlycon console=ttyS0";
19
19
stdout-path = "serial0";
20
20
/* Reserve 65MiB for initrd image */
21
- linux,initrd-start = <0x1be00000 >; /* @406 MiB (446 * 1024 * 1024) */
22
- linux,initrd-end = <0x1fefffff >; /* @511 MiB (511 * 1024 * 1024 - 1) */
21
+ linux,initrd-start = <0x3be00000 >; /* @ 958 MiB (958 * 1024 * 1024) */
22
+ linux,initrd-end = <0x3fefffff >; /* @1023 MiB (511 * 1024 * 1024 - 1) */
23
23
};
24
24
25
25
cpus {
30
30
31
31
sram: memory@0 {
32
32
device_type = "memory";
33
- reg = <0x00000000 0x20000000>;
33
+ reg = <0x00000000 0x40000000>; /* 1024 MiB */
34
34
reg-names = "sram0";
35
35
};
36
36
You can’t perform that action at this time.
0 commit comments