Forum Discussion
EBERLAZARE_I_Intel
Regular Contributor
4 years agoHi,
May I know how did you change for "Updated memory reg property to allocate 4GB instead of 8GB" ?
letmein
New Contributor
4 years agoHi,
In the u-boot-board.dtsi file (the file is available in requested_files.zip from an earlier post), I have the following settings for the 4GB memory:
memory {
#address-cells = <2>;
#size-cells = <2>;
reg = <0 0x00000000 0 0x80000000>, /* 2GB */
<2 0x80000000 0 0x80000000>; /* 2GB */
u-boot,dm-pre-reloc;
};
Thanks!