mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-16 09:34:18 +00:00
Merge "build(poetry): install dependencies with --no-root
" into integration
This commit is contained in:
commit
5488b945d6
3 changed files with 6 additions and 6 deletions
4
Makefile
4
Makefile
|
@ -1778,12 +1778,12 @@ $(BUILD_PLAT)/romlib/romlib.bin $(BUILD_PLAT)/lib/libwrappers.a $&: $(BUILD_PLAT
|
|||
$(q)${MAKE} PLAT_DIR=${PLAT_DIR} BUILD_PLAT=${BUILD_PLAT} ENABLE_BTI=${ENABLE_BTI} CRYPTO_SUPPORT=${CRYPTO_SUPPORT} ARM_ARCH_MINOR=${ARM_ARCH_MINOR} INCLUDES=$(call escape-shell,$(INCLUDES)) DEFINES=$(call escape-shell,$(DEFINES)) --no-print-directory -C ${ROMLIBPATH} all
|
||||
|
||||
memmap: all
|
||||
$(if $(host-poetry),$(q)poetry -q install)
|
||||
$(if $(host-poetry),$(q)poetry -q install --no-root)
|
||||
$(q)$(if $(host-poetry),poetry run )memory -sr ${BUILD_PLAT}
|
||||
|
||||
tl: ${BUILD_PLAT}/tl.bin
|
||||
${BUILD_PLAT}/tl.bin: ${HW_CONFIG}
|
||||
$(if $(host-poetry),$(q)poetry -q install)
|
||||
$(if $(host-poetry),$(q)poetry -q install --no-root)
|
||||
$(q)$(if $(host-poetry),poetry run )tlc create --fdt $< -s ${FW_HANDOFF_SIZE} $@
|
||||
|
||||
doc:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (c) 2019-2024, Arm Limited. All rights reserved.
|
||||
# Copyright (c) 2019-2025, Arm Limited. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
#
|
||||
|
@ -24,5 +24,5 @@ help:
|
|||
# Catch-all target: route all unknown targets to Sphinx using the new
|
||||
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
|
||||
.DEFAULT: Makefile
|
||||
$(if $(host-poetry),$(q)poetry -q install --with=docs)
|
||||
$(if $(host-poetry),$(q)poetry -q install --no-root --with=docs)
|
||||
$(q)$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
#
|
||||
# Copyright (c) 2015-2024, Arm Limited and Contributors. All rights reserved.
|
||||
# Copyright (c) 2015-2025, Arm Limited and Contributors. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
#
|
||||
|
@ -502,7 +502,7 @@ ifneq ($(COTDTPATH),)
|
|||
$(q)$($(ARCH)-cpp) $(cot-dt-cpp-flags)
|
||||
|
||||
$(BUILD_PLAT)/$(COTDTPATH:.dtsi=.c): $(BUILD_PLAT)/$(COTDTPATH:.dtsi=.dts) | $$(@D)/
|
||||
$(if $(host-poetry),$(q)poetry -q install)
|
||||
$(if $(host-poetry),$(q)poetry -q install --no-root)
|
||||
$(q)$(if $(host-poetry),poetry run )cot-dt2c convert-to-c $< $@
|
||||
|
||||
BL2_SOURCES += $(BUILD_PLAT)/$(COTDTPATH:.dtsi=.c)
|
||||
|
|
Loading…
Add table
Reference in a new issue