]> git.dujemihanovic.xyz Git - u-boot.git/commit
sandbox: Set up global_data earlier
authorSimon Glass <sjg@chromium.org>
Wed, 7 Aug 2024 22:47:26 +0000 (16:47 -0600)
committerTom Rini <trini@konsulko.com>
Fri, 9 Aug 2024 22:03:19 +0000 (16:03 -0600)
commit16b9c64caf900a9ce4623090e8263a7da2746998
treefc7c1ba253f4eea0a6317ba6d8eed4a472ba060a
parent5b33660c54e56aaee4485a9d283d4d33fb77001c
sandbox: Set up global_data earlier

It is possible for U-Boot functions such as printf() to be called
within state_init(). This can end up checking gd->flags (e.g. in putc())
before global_data is set up.

Move the setup earlier to avoid this. This fixes the suppression of some
debug output in memory allocation (when enabled).

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/sandbox/cpu/start.c