Patrick Georgi (pgeorgi@google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/11150
-gerrit
commit 6f635c880cf8eb3b6afce3a7404d1b3317439e67 Author: Patrick Georgi patrick@georgi-clan.de Date: Mon Aug 10 10:21:51 2015 +0200
board_status: create temporary directory in coreboot tree
Otherwise there may be a filesystem boundary that breaks make oldconfig.
Change-Id: I1eb55bcabc3e1b834d54f3da9fadfc352f0c4a65 Signed-off-by: Patrick Georgi patrick@georgi-clan.de --- util/board_status/board_status.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 5bcbd04..0f5627d 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -211,7 +211,7 @@ fi
# Results will be placed in a temporary location until we're ready to upload. # If the user does not wish to upload, results will remain in /tmp. -tmpdir=$(mktemp -d --tmpdir coreboot_board_status.XXXXXXXX) +tmpdir=$(mktemp -d coreboot_board_status.XXXXXXXX)
cbfstool_cmd="build/cbfstool" if test ! -x build/cbfstool; then