From 4fb67dbb958f3c3bea2b5bfe34d2ffbaa6ea6e40 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard Date: Sun, 6 Feb 2011 21:40:19 +0100 Subject: barebox: add option to build bareboxenv for target Signed-off-by: Peter Korsgaard --- boot/barebox/barebox.mk | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'boot/barebox/barebox.mk') diff --git a/boot/barebox/barebox.mk b/boot/barebox/barebox.mk index 07266d996..09deb5cd2 100644 --- a/boot/barebox/barebox.mk +++ b/boot/barebox/barebox.mk @@ -48,7 +48,14 @@ $(BAREBOX_DIR)/.installed: $(BAREBOX_DIR)/.built cp $(BAREBOX_DIR)/barebox.bin $(BINARIES_DIR) touch $@ -barebox: $(BAREBOX_DIR)/.installed +# bareboxenv for the target +$(TARGET_DIR)/usr/bin/bareboxenv: $(BAREBOX_DIR)/.configured + mkdir -p $(@D) + $(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_LDFLAGS) -o $@ \ + $(BAREBOX_DIR)/scripts/bareboxenv.c + +barebox: $(BAREBOX_DIR)/.installed \ + $(if $(BR2_TARGET_BAREBOX_BAREBOXENV),$(TARGET_DIR)/usr/bin/bareboxenv) ifeq ($(BR2_TARGET_BAREBOX),y) TARGETS+=barebox -- cgit v1.2.3