[Armadeus-commitlog] armadeus branch, master, updated. armadeus-7.0-98-g8ce9ce1f3
Brought to you by:
sszy
|
From: Sébastien S. <ss...@us...> - 2019-07-11 09:24:24
|
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "armadeus".
The branch, master has been updated
via 8ce9ce1f3af56cf1dc5ede1bd8ee2b69abd2ed34 (commit)
via dab730fb202c7c2f7305bb249933b86c6dec3c58 (commit)
from cde66b09d6dadc15c8e3aec881c6135ea126041b (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 8ce9ce1f3af56cf1dc5ede1bd8ee2b69abd2ed34
Author: Sébastien Szymanski <seb...@ar...>
Date: Thu Jul 11 11:23:35 2019 +0200
[BSP] bump to BR 2019.02.4
commit dab730fb202c7c2f7305bb249933b86c6dec3c58
Author: Sébastien Szymanski <seb...@ar...>
Date: Thu Jul 11 11:17:38 2019 +0200
[BSP] Makefile: create {before,after}.txt files in output dir
-----------------------------------------------------------------------
Summary of changes:
Makefile | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/Makefile b/Makefile
index 6f0474432..b60d7b204 100644
--- a/Makefile
+++ b/Makefile
@@ -27,7 +27,7 @@ export ARMADEUS_TOPDIR
#--- User configurable stuff:
BUILDROOT_MAJOR_VERSION ?= 2019.02
-BUILDROOT_VERSION ?= $(BUILDROOT_MAJOR_VERSION).3
+BUILDROOT_VERSION ?= $(BUILDROOT_MAJOR_VERSION).4
include ./Makefile.in
BUILDROOT_SITE:=https://buildroot.org/downloads
BUILDROOT_PATCH_DIR:=$(ARMADEUS_TOPDIR)/patches/buildroot/$(BUILDROOT_MAJOR_VERSION)
@@ -166,12 +166,12 @@ linux-clean: $(BUILDROOT_DIR)/.configured
fi;
all: $(BUILDROOT_DIR)/.configured
- @echo -n `date +%s` > before.txt
+ @echo -n `date +%s` > $(BUILDROOT_OUTPUT_DIR)/before.txt
@$(MAKE) -C $(BUILDROOT_DIR) $@
@./scripts/show_build_infos.sh
- @echo -n `date +%s` > after.txt
- @BEFORE=`cat before.txt`; AFTER=`cat after.txt`; BUILD_TIME_IN_SEC=`expr $$AFTER - $$BEFORE`; echo -e "\033[1mBuild time: $$BUILD_TIME_IN_SEC seconds\033[0m"
- @rm before.txt after.txt
+ @echo -n `date +%s` > $(BUILDROOT_OUTPUT_DIR)/after.txt
+ @BEFORE=`cat $(BUILDROOT_OUTPUT_DIR)/before.txt`; AFTER=`cat $(BUILDROOT_OUTPUT_DIR)/after.txt`; BUILD_TIME_IN_SEC=`expr $$AFTER - $$BEFORE`; echo -e "\033[1mBuild time: $$BUILD_TIME_IN_SEC seconds\033[0m"
+ @rm $(BUILDROOT_OUTPUT_DIR)/before.txt $(BUILDROOT_OUTPUT_DIR)/after.txt
menuconfig: $(BUILDROOT_DIR)/.configured
@$(MAKE) -C $(BUILDROOT_DIR) $@
hooks/post-receive
--
armadeus
|