[U-Boot] [RFC] more features enabled on sandbox?

AKASHI Takahiro takahiro.akashi at linaro.org
Thu Nov 21 03:06:53 UTC 2019


Hi Tom, Simon,

I remember that Tom suggested me, in some UEFI-related discussion,
that we can and should enable as many features/configurations
on Sandbox as possible.
How should we do that?

1. modify a Kconfig;
        config FOO
          bool
          default y if SANDBOX
2. modify a sandbox*_defconfig
        CONFIG_FOO=y
3. take a mixed approach of (2) and (3) depending on a *type* of feature
4. add a customized build/test in ("matrix" of) Travis for a specific feature
5. or else?

For example,
CONFIG_FAT
CONFIG_FAT_WRITE
CONFIG_UEFI_SECURE_BOOT
  (which has bunch of dependencies.)

Those are NOT defined as optional features by UEFI specification,
but currently NOT selected by default, probably due to fears
against increase of code size. But this is not the case for Sandbox.

In addition,
CONFIG_CMD_FAT
CONFIG_CMD_EFIDEBUG
CONFIG_CMD_NVEDIT_EFI

Those commands are mandated in order to run my pytest for UEFI
secure boot. Again, they are NOT selected by default.
So even if sandbox build has no errors, UEFI secure boot test
will never be run due to configuration dependencies.

# This is NOT my patch-specific issue, as you know. There are
# bunch of pytests which are unexpectedly skipped in Travis CI.

What is your expectation here?

Thanks,
-Takahiro Akashi


More information about the U-Boot mailing list