blob: f6271908f666ca28319b5cc795794ae32a0f33b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
FILESEXTRAPATHS_prepend := "${THISDIR}/u-boot:"
SRC_URI_append = " \
file://0001-fixup-build-with-gcc7.patch \
"
# Config names have changed in mainline u-boot since 2015.04,
# here we want to use the old ones.
UBOOT_MACHINE = "${BOARD_NAME}_defconfig"
# Also override the override
UBOOT_MACHINE_sota = "${BOARD_NAME}_defconfig"
do_deploy_prepend() {
ln -sf ${B}/${UBOOT_SREC} ${S}/${UBOOT_SREC}
}
|