From: Ahmad Fatoum <a.fatoum@pengutronix.de> To: barebox@lists.infradead.org Cc: jmaselbas@kalray.eu, Ahmad Fatoum <a.fatoum@pengutronix.de>, rcz@pengutronix.de Subject: [PATCH v4 01/13] kbuild: add install target Date: Fri, 4 Jun 2021 10:30:57 +0200 [thread overview] Message-ID: <20210604083109.10581-2-a.fatoum@pengutronix.de> (raw) In-Reply-To: <20210604083109.10581-1-a.fatoum@pengutronix.de> For CI, it would be useful to have the barebox build install the artifacts into a directory. Add an install target that does this. Example usage: make install INSTALL_PATH=install/ Unlike Linux, we don't set INSTALL_PATH to a default value, because most barebox-enabled boards don't have barebox in a file system. Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de> --- Makefile | 14 ++++++++++++++ images/Makefile | 5 +++++ 2 files changed, 19 insertions(+) diff --git a/Makefile b/Makefile index 2ac804f079ac..9373644e7da9 100644 --- a/Makefile +++ b/Makefile @@ -880,6 +880,20 @@ ifndef CONFIG_PBL_IMAGE $(call cmd,check_file_size,$@,$(CONFIG_BAREBOX_MAX_IMAGE_SIZE)) endif +install: +ifeq ($(INSTALL_PATH),) + @echo 'error: INSTALL_PATH undefined' >&2 + @exit 1 +endif +ifdef CONFIG_PBL_IMAGE + $(Q)$(MAKE) $(build)=images __images_install + @install -t "$(INSTALL_PATH)" barebox.bin +else + @install -t "$(INSTALL_PATH)" $(KBUILD_IMAGE) +endif + +PHONY += install + # By default the uImage load address is 2MB below CONFIG_TEXT_BASE, # leaving space for the compressed PBL image at 1MB below CONFIG_TEXT_BASE. UIMAGE_BASE ?= $(shell printf "0x%08x" $$(($(CONFIG_TEXT_BASE) - 0x200000))) diff --git a/images/Makefile b/images/Makefile index ee1347f6b6bd..c185982c17ed 100644 --- a/images/Makefile +++ b/images/Makefile @@ -204,6 +204,11 @@ images: $(image-y-path) $(flash-link) $(flash-list) FORCE @echo "images built:" @for i in $(image-y); do echo $$i; done +__images_install: images + @for i in $(image-y-path); do install -t "$(INSTALL_PATH)" $$i; done + +PHONY += __images_install + $(flash-link): $(link-dest) FORCE $(call if_changed,ln) -- 2.29.2 _______________________________________________ barebox mailing list barebox@lists.infradead.org http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2021-06-04 8:34 UTC|newest] Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-06-04 8:30 [PATCH v4 00/13] add barebox in-tree testing infrastructure Ahmad Fatoum 2021-06-04 8:30 ` Ahmad Fatoum [this message] 2021-06-04 8:30 ` [PATCH v4 02/13] kbuild: add ARCH={i386, x86_64} as aliases for x86 Ahmad Fatoum 2021-06-04 8:30 ` [PATCH v4 03/13] kbuild: add ARCH=um alias for sandbox Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 04/13] MIPS: qemu-malta: generate swapped image as part of multi-image build Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 05/13] openrisc: set default KBUILD_IMAGE Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 06/13] Documentation: boards: RISC-V: update TinyEMU support Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 07/13] test: add basic barebox self-test infrastructure Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 08/13] test: self: port Linux printf kselftest Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 09/13] test: add labgrid-style configs for some emulated targets Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 10/13] test: add first sample tests Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 11/13] test: add emulate.pl, a runner for barebox on emulated targets Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 12/13] test: self: run selftests as part of the pytest suite Ahmad Fatoum 2021-06-04 8:31 ` [PATCH v4 13/13] test: add bthread test Ahmad Fatoum
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20210604083109.10581-2-a.fatoum@pengutronix.de \ --to=a.fatoum@pengutronix.de \ --cc=barebox@lists.infradead.org \ --cc=jmaselbas@kalray.eu \ --cc=rcz@pengutronix.de \ --subject='Re: [PATCH v4 01/13] kbuild: add install target' \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: link
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox