mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-27 09:31:30 +02:00
configs: use syntax CONFIG_FOO=n in tools-only_defconfig
The tools-only defconfig causes troubles on MacOSX due to the default C compiler being Clang (LLVM) rather than GCC and more specifically due to [1]. Therefore replace "# CONFIG_FOO is not set" with the equivalent "CONFIG_FOO=n" using the following command: $ sed -i -e 's/# \(CONFIG_[^ ]*\) is not set/\1=n/' \ configs/tools-only_defconfig This fixes the tools_only_macOS CI job on GitHub [2]. [1] https://github.com/llvm/llvm-project/issues/78778 [2] https://dev.azure.com/u-boot/u-boot/_build/results?buildId=9105&view=results Suggested-by: Tom Rini <trini@konsulko.com> Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org> Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
1ca0ddb643
commit
c2cd7bd3ec
@ -4,27 +4,27 @@ CONFIG_ENV_SIZE=0x2000
|
||||
CONFIG_DEFAULT_DEVICE_TREE="sandbox"
|
||||
CONFIG_SYS_LOAD_ADDR=0x0
|
||||
CONFIG_PCI=y
|
||||
# CONFIG_SANDBOX_SDL is not set
|
||||
# CONFIG_EFI_LOADER is not set
|
||||
CONFIG_SANDBOX_SDL=n
|
||||
CONFIG_EFI_LOADER=n
|
||||
CONFIG_ANDROID_BOOT_IMAGE=y
|
||||
CONFIG_TIMESTAMP=y
|
||||
CONFIG_FIT=y
|
||||
CONFIG_FIT_SIGNATURE=y
|
||||
# CONFIG_BOOTSTD_FULL is not set
|
||||
# CONFIG_BOOTMETH_CROS is not set
|
||||
# CONFIG_BOOTMETH_VBE is not set
|
||||
CONFIG_BOOTSTD_FULL=n
|
||||
CONFIG_BOOTMETH_CROS=n
|
||||
CONFIG_BOOTMETH_VBE=n
|
||||
CONFIG_USE_BOOTCOMMAND=y
|
||||
CONFIG_BOOTCOMMAND="run distro_bootcmd"
|
||||
# CONFIG_CMD_BOOTD is not set
|
||||
# CONFIG_CMD_BOOTM is not set
|
||||
# CONFIG_CMD_BOOTI is not set
|
||||
# CONFIG_CMD_ELF is not set
|
||||
# CONFIG_CMD_EXTENSION is not set
|
||||
# CONFIG_CMD_DATE is not set
|
||||
CONFIG_CMD_BOOTD=n
|
||||
CONFIG_CMD_BOOTM=n
|
||||
CONFIG_CMD_BOOTI=n
|
||||
CONFIG_CMD_ELF=n
|
||||
CONFIG_CMD_EXTENSION=n
|
||||
CONFIG_CMD_DATE=n
|
||||
CONFIG_OF_CONTROL=y
|
||||
CONFIG_SYS_RELOC_GD_ENV_ADDR=y
|
||||
# CONFIG_NET is not set
|
||||
# CONFIG_ACPIGEN is not set
|
||||
CONFIG_NET=n
|
||||
CONFIG_ACPIGEN=n
|
||||
CONFIG_AXI=y
|
||||
CONFIG_AXI_SANDBOX=y
|
||||
CONFIG_SANDBOX_GPIO=y
|
||||
@ -33,8 +33,8 @@ CONFIG_DM_RTC=y
|
||||
CONFIG_SOUND=y
|
||||
CONFIG_SYSRESET=y
|
||||
CONFIG_TIMER=y
|
||||
# CONFIG_VIRTIO_MMIO is not set
|
||||
# CONFIG_VIRTIO_PCI is not set
|
||||
# CONFIG_VIRTIO_SANDBOX is not set
|
||||
# CONFIG_GENERATE_ACPI_TABLE is not set
|
||||
CONFIG_VIRTIO_MMIO=n
|
||||
CONFIG_VIRTIO_PCI=n
|
||||
CONFIG_VIRTIO_SANDBOX=n
|
||||
CONFIG_GENERATE_ACPI_TABLE=n
|
||||
CONFIG_TOOLS_MKEFICAPSULE=y
|
||||
|
Loading…
x
Reference in New Issue
Block a user