diff options
author | Patrick Georgi <pgeorgi@chromium.org> | 2016-02-19 10:24:07 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2016-02-21 01:42:59 +0100 |
commit | 2d5d552fa5d91328c406f4b1b1886c6eaab8fcfe (patch) | |
tree | c422d05cf754a5adabf45a7011d1c0cd9f143fc4 | |
parent | 8a0dae628fafd3e419d9d3b9ec7aac551e02af71 (diff) | |
download | coreboot-2d5d552fa5d91328c406f4b1b1886c6eaab8fcfe.tar.xz |
board-status: make push-to-wiki more flexible
Change-Id: I952a694f645caf9d9726965e39afc09c6fdce0e3
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: https://review.coreboot.org/13741
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
-rw-r--r-- | util/board_status/to-wiki/README | 4 | ||||
-rwxr-xr-x | util/board_status/to-wiki/push-to-wiki.sh | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/util/board_status/to-wiki/README b/util/board_status/to-wiki/README index 2bdff5a6af..0a0d591c87 100644 --- a/util/board_status/to-wiki/README +++ b/util/board_status/to-wiki/README @@ -18,8 +18,8 @@ To emit wiki-text, in the board-status repository's top-level directory, run The output ends up on stdout, so you'll have to store it yourself, if you need it later. -`push-to-wiki.sh FILENAME` can be used to push a file into the wiki. The page name is hard coded -in TITLE, while user credentials are looked up in ~/.wikiaccount, which should look like +`push-to-wiki.sh FILENAME TITLE` can be used to push a file into the wiki. +User credentials are looked up in ~/.wikiaccount, which should look like USERNAME=user USERPASS=password diff --git a/util/board_status/to-wiki/push-to-wiki.sh b/util/board_status/to-wiki/push-to-wiki.sh index fb011c1cc1..58e2cbb064 100755 --- a/util/board_status/to-wiki/push-to-wiki.sh +++ b/util/board_status/to-wiki/push-to-wiki.sh @@ -1,9 +1,10 @@ #!/bin/bash # $1: file containing text +# $2: wiki page to update . ~/.wikiaccount WIKIAPI="http://www.coreboot.org/api.php" -TITLE="Supported_Motherboards" +TITLE="$2" cookie_jar="$HOME/.wikicookiejar" #Will store file in wikifile |