
19 Feb
2015
19 Feb
'15
3:06 p.m.
Hi Alexey,
On 18 February 2015 at 06:44, Alexey Brodkin Alexey.Brodkin@synopsys.com wrote:
Hi Simon,
On Thu, 2015-02-05 at 21:41 -0700, Simon Glass wrote:
+config SYS_MALLOC_F
bool "Enable malloc() pool before relocation"
default 0x400
I'm wondering if default value here should be of type "bool" but not a hex value?
Probably this is just a copy paste from the following SYS_MALLOC_F_LEN?
Thanks. I found another problem also but may have a solution now so will see a few patches,
help
Before relocation memory is very limited on many platforms. Still,
we can provide a small malloc() pool if needed. Driver model in
particular needs this to operate, so that it can allocate the
initial serial device and any others that are needed.
+config SYS_MALLOC_F_LEN
hex "Size of malloc() pool before relocation"
depends on SYS_MALLOC_F
default 0x400
help
Before relocation memory is very limited on many platforms. Still,
we can provide a small malloc() pool if needed. Driver model in
particular needs this to operate, so that it can allocate the
initial serial device and any others that are needed.
-Alexey
Regards, Simon