summaryrefslogtreecommitdiff
path: root/doc/arch/sandbox/sandbox.rst
Commit message (Collapse)AuthorAgeFilesLines
* doc: sandbox: replace sgdisk input with optionsCorentin Guillevic2023-04-031-1/+1
| | | | | | | | | | The input provided to sgdisk is in fact aimed for sfdisk. The use of sgdisk and sfdisk, coming from different projects, is not the same. So, this commit translates the sfdisk-formatted input into sgdisk-compatible options. Partitions are not modified. Signed-off-by: Corentin Guillevic <corentin.guillevic@smile.fr>
* global: Migrate CONFIG_MALLOC_F_ADDR to CFGTom Rini2022-12-231-1/+1
| | | | | | Perform a simple rename of CONFIG_MALLOC_F_ADDR to CFG_MALLOC_F_ADDR Signed-off-by: Tom Rini <trini@konsulko.com>
* sandbox: Rework how SDL is enabled / disabledTom Rini2022-12-051-6/+3
| | | | | | | | | | | | Given that we can use Kconfig logic directly to see if we have a program available on the host or not, change from passing NO_SDL to instead controlling CONFIG_SANDBOX_SDL in Kconfig directly. Introduce CONFIG_HOST_HAS_SDL as the way to test for sdl2-config and default CONFIG_SANDBOX_SDL on if we have that, or not. Cc: Simon Glass <sjg@chromium.org> Signed-off-by: Tom Rini <trini@konsulko.com> Reviewed-by: Simon Glass <sjg@chromium.org>
* dm: Add documentation for host command and implementationSimon Glass2022-11-071-0/+626
Document the 'host' command and also the internals of how it is implemented. Signed-off-by: Simon Glass <sjg@chromium.org>