Skip to content

Commit

Permalink
Lower load_addr for boards with only 1GB RAM
Browse files Browse the repository at this point in the history
Setting load_addr to "0x44000000" (1088 MiB) is too high for boards with only 1GB of RAM, and causes boot failure. I tried some lower values, until I found "0x34000000" (832 MiB) to work. I made quite big steps, so we probably could find something slightly higher to work too, but I see no reason why we would need to do it.

Reference: https://forum.armbian.com/topic/8829-le-potato-c2-k2-419-lts-testing-thread/?do=findComment&comment=69850
  • Loading branch information
teacupx committed Jan 16, 2019
1 parent b213742 commit 01571c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/bootscripts/boot-meson64.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# Please edit /boot/armbianEnv.txt to set supported parameters
#
setenv load_addr "0x44000000"
setenv load_addr "0x34000000"
setenv initrd_high "0xffffffff"
setenv fdt_high "0xffffffff"
setenv overlay_error "false"
Expand Down

0 comments on commit 01571c0

Please sign in to comment.