mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-24 13:55:56 +00:00
feat(st): mandate dtc version 1.4.7
To be able to use /omit-if-no-ref/ in DT files, the dtc version should be at least 1.4.7. Update the makefile rule that checks dtc version. Signed-off-by: Yann Gautier <yann.gautier@st.com> Change-Id: I06bde289cf359a7383694e4c86991dfba781e7d7
This commit is contained in:
parent
9e1e82fce0
commit
38ac8bbbe4
1 changed files with 2 additions and 2 deletions
|
@ -35,8 +35,8 @@ clean_stm32image:
|
|||
${Q}${MAKE} --no-print-directory -C ${STM32IMAGEPATH} clean
|
||||
|
||||
check_dtc_version:
|
||||
@if [ ${DTC_VERSION} -lt 10404 ]; then \
|
||||
echo "dtc version too old (${DTC_V}), you need at least version 1.4.4"; \
|
||||
@if [ ${DTC_VERSION} -lt 10407 ]; then \
|
||||
echo "dtc version too old (${DTC_V}), you need at least version 1.4.7"; \
|
||||
false; \
|
||||
fi
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue