From a3c44d843cf6690f508a59ac13b2f9c7b44e6032 Mon Sep 17 00:00:00 2001 From: Idwer Vollering Date: Mon, 11 Jan 2021 14:07:21 +0100 Subject: util/board_status/board_status.sh: improve mktemp behaviour on non-linux OSes Signed-off-by: Idwer Vollering Change-Id: I763b0e7c7c81a2447ed20db0a25047d106e30606 Reviewed-on: https://review.coreboot.org/c/coreboot/+/49308 Reviewed-by: David Hendricks Tested-by: build bot (Jenkins) --- util/board_status/board_status.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'util') diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh index 5235a289fc..01fc7ecbd9 100755 --- a/util/board_status/board_status.sh +++ b/util/board_status/board_status.sh @@ -315,7 +315,14 @@ 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) +case $(uname) in + FreeBSD) + tmpdir=$(mktemp -d -t coreboot_board_status) + ;; + *) + tmpdir=$(mktemp -d --tmpdir coreboot_board_status.XXXXXXXX) + ;; +esac # Obtain coreboot config by running cbfstool on the ROM image. cbfstool may # already exist in build/ or util/cbfstool/, but if not then we'll build it -- cgit v1.2.3