diff options
| author | Simon Glass <[email protected]> | 2024-11-02 13:36:11 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-11-13 16:02:58 -0600 |
| commit | a819845df733a9c33d820a4af8fc368ba5d7c786 (patch) | |
| tree | d70950e2e51d48377fdbf8dd45af16bdf93203f4 | |
| parent | 9084e1b1b94c31d76ae7efd12f8828f3b4ed2255 (diff) | |
sandbox: Add a build without CMDLINE
Sometimes this breaks, so add a build to keep it working. Since sandbox
enables a lot of options, it is a good board to use. The new config is
created simply by copying the existing sandbox and turning off CMDLINE
Once we have tests for non-CMDLINE operation, this can be adjusted to
run those tests.
Create a new build which will be picked up by CI. Update the maintainer
entry as well.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
| -rw-r--r-- | MAINTAINERS | 1 | ||||
| -rw-r--r-- | configs/sandbox_nocmdline_defconfig | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/MAINTAINERS b/MAINTAINERS index 0399ed1dbf6..452ec448edd 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1551,6 +1551,7 @@ SANDBOX M: Simon Glass <[email protected]> S: Maintained F: arch/sandbox/ +F: configs/sandbox* F: doc/arch/sandbox.rst F: drivers/*/*sandbox*.c F: include/dt-bindings/*/sandbox*.h diff --git a/configs/sandbox_nocmdline_defconfig b/configs/sandbox_nocmdline_defconfig new file mode 100644 index 00000000000..03173113fd5 --- /dev/null +++ b/configs/sandbox_nocmdline_defconfig @@ -0,0 +1,2 @@ +#include "sandbox_defconfig" +# CONFIG_CMDLINE is not set |
