Our last sync with the kernel was 5.1. We are so out of sync now, that tracking the patches and backporting them one by one makes little sense and it's going to take ages. This is an attempt to sync up Makefiles to 6.1. Unfortunately due to sheer amount of patches this is not easy to review, but that's what we decided during a community call for the bump to 5.1, so we are following the same guidelines here. Signed-off-by: Sughosh Ganu <sughosh.ganu@linaro.org> Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>a #rebased on -next
18 lines
479 B
Makefile
18 lines
479 B
Makefile
# SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause
|
|
#
|
|
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Copyright (c) 2017 Intel Corporation
|
|
#
|
|
|
|
# Add 4096 bytes of zeroes to u-boot.bin
|
|
quiet_cmd_mkalign_eds = EDSALGN $@
|
|
cmd_mkalign_eds = \
|
|
dd if=$^ of=$@ bs=4k seek=1 2>/dev/null && \
|
|
mv $@ $^
|
|
|
|
INPUTS-y += u-boot-align.bin
|
|
u-boot-align.bin: u-boot.bin FORCE
|
|
$(call if_changed,mkalign_eds)
|
|
|
|
HOSTCFLAGS_include/autoconf.mk.dep = -Wno-variadic-macros
|