diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-31 15:28:15 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-12-31 15:28:15 +0100 |
commit | c12a3ea5e5f56b93c5c08adc986b037af7452b39 (patch) | |
tree | 44140945e381bb31f6f95f520ebc8bdbe8a8255e | |
parent | 8dd797a05498692b89841c570b97b9d10467399a (diff) | |
download | buildroot-c12a3ea5e5f56b93c5c08adc986b037af7452b39.tar.gz buildroot-c12a3ea5e5f56b93c5c08adc986b037af7452b39.zip |
configs: orangepipc defconfig needs dtc for u-boot
As can be seen at
https://travis-ci.org/buildroot/buildroot-defconfig-testing/jobs/99518455,
the new Orange Pi PC defconfig fails to build due to DTC being missing
when building U-Boot. This commit adds the appropriate option to add
DTC as a dependency to U-Boot.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | configs/orangepipc_defconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/orangepipc_defconfig b/configs/orangepipc_defconfig index f430392c14..f39ea43070 100644 --- a/configs/orangepipc_defconfig +++ b/configs/orangepipc_defconfig @@ -24,6 +24,7 @@ BR2_TARGET_UBOOT_BOARDNAME="orangepi_pc" BR2_TARGET_UBOOT_CUSTOM_GIT=y BR2_TARGET_UBOOT_CUSTOM_REPO_URL="http://git.denx.de/u-boot.git" BR2_TARGET_UBOOT_CUSTOM_REPO_VERSION="4832e17787acb29734d895751bc7a594908aecc6" +BR2_TARGET_UBOOT_NEEDS_DTC=y BR2_TARGET_UBOOT_FORMAT_CUSTOM=y BR2_TARGET_UBOOT_FORMAT_CUSTOM_NAME="u-boot-sunxi-with-spl.bin" BR2_PACKAGE_HOST_GENIMAGE=y |