diff options
author | Patrick Georgi <patrick@georgi-clan.de> | 2015-08-10 10:21:51 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2015-08-10 18:04:07 +0200 |
commit | e10c82a23a9fc442b314f217a027c9712ed37b3a (patch) | |
tree | 901c9c793d620f4fc565f1894af5c068364186a8 /util/board_status | |
parent | 496cdc3626a642dcb1c692e29d8a9d5ba3625a86 (diff) |
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>
Reviewed-on: http://review.coreboot.org/11150
Tested-by: build bot (Jenkins)
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
Diffstat (limited to 'util/board_status')
-rwxr-xr-x | util/board_status/board_status.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 5bcbd04768..0f5627d653 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 |