diff options
author | Tom Rini <trini@konsulko.com> | 2018-02-19 11:39:39 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-02-19 11:39:39 -0500 |
commit | d884c58f0c7b997fd7f04e360d86717e75de74b1 (patch) | |
tree | 1426af3a541f4900e496ce4f15607da6631b1977 /board | |
parent | ede52d04825d69a9aca4d048dae89f3b85e8f504 (diff) | |
parent | c6b89f31806df06a5d7b688a65f9d2e6e6119a55 (diff) | |
download | u-boot-d884c58f0c7b997fd7f04e360d86717e75de74b1.tar.gz |
Merge git://git.denx.de/u-boot-dm
Diffstat (limited to 'board')
-rw-r--r-- | board/sandbox/MAINTAINERS | 8 | ||||
-rw-r--r-- | board/sandbox/README.sandbox | 7 |
2 files changed, 13 insertions, 2 deletions
diff --git a/board/sandbox/MAINTAINERS b/board/sandbox/MAINTAINERS index 6d0790ccd1..df29abe7aa 100644 --- a/board/sandbox/MAINTAINERS +++ b/board/sandbox/MAINTAINERS @@ -5,6 +5,14 @@ F: board/sandbox/ F: include/configs/sandbox.h F: configs/sandbox_defconfig +SANDBOX64 BOARD +M: Simon Glass <sjg@chromium.org> +M: Mario Six <mario.six@gdsys.cc> +S: Maintained +F: board/sandbox/ +F: include/configs/sandbox.h +F: configs/sandbox64_defconfig + SANDBOX_NOBLK BOARD M: Simon Glass <sjg@chromium.org> S: Maintained diff --git a/board/sandbox/README.sandbox b/board/sandbox/README.sandbox index 9bc13e142b..760866f1c3 100644 --- a/board/sandbox/README.sandbox +++ b/board/sandbox/README.sandbox @@ -24,8 +24,11 @@ single board in board/sandbox. CONFIG_SANDBOX_BIG_ENDIAN should be defined when running on big-endian machines. -By default sandbox builds and runs on 64-bit hosts. If you are going to build -and run sandbox on a 32-bit host, select CONFIG_SANDBOX_32BIT. +There are two versions of the sandbox: One using 32-bit-wide integers, and one +using 64-bit-wide integers. The 32-bit version can be build and run on either +32 or 64-bit hosts by either selecting or deselecting CONFIG_SANDBOX_32BIT; by +default, the sandbox it built for a 32-bit host. The sandbox using 64-bit-wide +integers can only be built on 64-bit hosts. Note that standalone/API support is not available at present. |