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 8
8
9
9
/* RAM */
10
10
11
- #define RAM_SIZE (512 * 1024 * 1024)
11
+ #define RAM_SIZE (1024 * 1024 * 1024)
12
12
#define DTB_SIZE (1 * 1024 * 1024)
13
13
#define INITRD_SIZE (8 * 1024 * 1024)
14
14
Original file line number Diff line number Diff line change 17
17
chosen {
18
18
bootargs = "earlycon console=ttyS0";
19
19
stdout-path = "serial0";
20
- linux,initrd-start = <0x1f700000 >; /* @403 MiB (503 * 1024 * 1024) */
21
- linux,initrd-end = <0x1fefffff >; /* @511 MiB (511 * 1024 * 1024 - 1) */
20
+ linux,initrd-start = <0x3f700000 >; /* @915 MiB (915 * 1024 * 1024) */
21
+ linux,initrd-end = <0x3fefffff >; /* @1023 MiB (1023 * 1024 * 1024 - 1) */
22
22
};
23
23
24
24
cpus {
29
29
30
30
sram: memory@0 {
31
31
device_type = "memory";
32
- reg = <0x00000000 0x20000000 >;
32
+ reg = <0x00000000 0x40000000 >;
33
33
reg-names = "sram0";
34
34
};
35
35
You can’t perform that action at this time.
0 commit comments