build bot (Jenkins) has posted comments on this change. ( https://review.coreboot.org/c/coreboot/+/49307 )
Change subject: util/board_status/board_status.sh: improve getopt detection and usage on non-linux OSes
......................................................................
Patch Set 2:
(1 comment)
File util/board_status/board_status.sh:
https://review.coreboot.org/c/coreboot/+/49307/comment/9bc7594b_e1466b58
PS2, Line 213: echo "Please install getopt, or build and install misc/getopt from ports"
line over 96 characters
--
To view, visit https://review.coreboot.org/c/coreboot/+/49307
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iba50d8a8609eda974f12b0d9802e04d7371aed5b
Gerrit-Change-Number: 49307
Gerrit-PatchSet: 2
Gerrit-Owner: Idwer Vollering <vidwer(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-Comment-Date: Mon, 11 Jan 2021 14:13:06 +0000
Gerrit-HasComments: Yes
Gerrit-Has-Labels: No
Gerrit-MessageType: comment
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/49307
to look at the new patch set (#2).
Change subject: util/board_status/board_status.sh: improve getopt detection and usage on non-linux OSes
......................................................................
util/board_status/board_status.sh: improve getopt detection and usage on
non-linux OSes
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
Change-Id: Iba50d8a8609eda974f12b0d9802e04d7371aed5b
---
M util/board_status/board_status.sh
1 file changed, 16 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/07/49307/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/49307
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: Iba50d8a8609eda974f12b0d9802e04d7371aed5b
Gerrit-Change-Number: 49307
Gerrit-PatchSet: 2
Gerrit-Owner: Idwer Vollering <vidwer(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: newpatchset
Hello build bot (Jenkins),
I'd like you to reexamine a change. Please visit
https://review.coreboot.org/c/coreboot/+/49306
to look at the new patch set (#2).
Change subject: util/board_status/board_status.sh: select the right gnu make binary
......................................................................
util/board_status/board_status.sh: select the right gnu make binary
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
Change-Id: I4523b1b235064f89c01530b47c9cb4c3c11c9761
---
M util/board_status/board_status.sh
1 file changed, 12 insertions(+), 3 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/06/49306/2
--
To view, visit https://review.coreboot.org/c/coreboot/+/49306
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I4523b1b235064f89c01530b47c9cb4c3c11c9761
Gerrit-Change-Number: 49306
Gerrit-PatchSet: 2
Gerrit-Owner: Idwer Vollering <vidwer(a)gmail.com>
Gerrit-Reviewer: build bot (Jenkins) <no-reply(a)coreboot.org>
Gerrit-MessageType: newpatchset
Idwer Vollering has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/49308 )
Change subject: util/board_status/board_status.sh: improve mktemp behaviour on non-linux OSes
......................................................................
util/board_status/board_status.sh: improve mktemp behaviour on non-linux OSes
Signed-off-by: Idwer Vollering <vidwer(a)gmail.com>
Change-Id: I763b0e7c7c81a2447ed20db0a25047d106e30606
---
M util/board_status/board_status.sh
1 file changed, 6 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/08/49308/1
diff --git a/util/board_status/board_status.sh b/util/board_status/board_status.sh
index 17ba85c..ce636b7 100755
--- a/util/board_status/board_status.sh
+++ b/util/board_status/board_status.sh
@@ -306,7 +306,12 @@
# 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
--
To view, visit https://review.coreboot.org/c/coreboot/+/49308
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-Change-Id: I763b0e7c7c81a2447ed20db0a25047d106e30606
Gerrit-Change-Number: 49308
Gerrit-PatchSet: 1
Gerrit-Owner: Idwer Vollering <vidwer(a)gmail.com>
Gerrit-MessageType: newchange