summaryrefslogtreecommitdiffstats
path: root/util/abuild
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2008-01-18 15:08:58 +0000
committerStefan Reinauer <stepan@openbios.org>2008-01-18 15:08:58 +0000
commitf8ee1806ac524bc782c93eccc59ee3c929abddb9 (patch)
tree7daab6b3aa82476a10d38fbf68068f4a409d2ce9 /util/abuild
parent7e61e45402aba2b90997f4f02ca8266cf65a229a (diff)
downloadcoreboot-staging-f8ee1806ac524bc782c93eccc59ee3c929abddb9.zip
coreboot-staging-f8ee1806ac524bc782c93eccc59ee3c929abddb9.tar.gz
Rename almost all occurences of LinuxBIOS to coreboot.
Due to the automatic nature of this update, I am self-acking. It worked in abuild. Signed-off-by: Stefan Reinauer <stepan@coresystems.de> Acked-by: Stefan Reinauer <stepan@coresystems.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3053 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/abuild')
-rwxr-xr-xutil/abuild/abuild30
-rw-r--r--util/abuild/abuild.112
2 files changed, 21 insertions, 21 deletions
diff --git a/util/abuild/abuild b/util/abuild/abuild
index 173acd0..dbbd94c 100755
--- a/util/abuild/abuild
+++ b/util/abuild/abuild
@@ -1,8 +1,8 @@
#!/bin/bash
#
-# LinuxBIOS autobuild
+# coreboot autobuild
#
-# This script builds LinuxBIOS images for all available targets.
+# This script builds coreboot images for all available targets.
#
# (C) 2004 by Stefan Reinauer <stepan@openbios.org>
# (C) 2006 by coresystems GmbH <info@coresystems.de>
@@ -18,7 +18,7 @@ ABUILD_DATE="October 24, 2006"
ABUILD_VERSION="0.4"
# Where shall we place all the build trees?
-TARGET=$( pwd )/linuxbios-builds
+TARGET=$( pwd )/coreboot-builds
XMLFILE=$( pwd )/abuild.xml
# path to payload. Should be more generic
@@ -27,7 +27,7 @@ PAYLOAD=/dev/null
# Lines of error context to be printed in FAILURE case
CONTEXT=5
-TESTSUBMISSION="http://qa.linuxbios.org/deployment/send.php"
+TESTSUBMISSION="http://qa.coreboot.org/deployment/send.php"
# One might want to adjust these in case of cross compiling
MAKE="make"
@@ -143,25 +143,25 @@ EOF
romimage "normal"
option USE_FALLBACK_IMAGE=0
option ROM_IMAGE_SIZE=0x17000
- option LINUXBIOS_EXTRA_VERSION=".0-normal"
+ option COREBOOT_EXTRA_VERSION=".0-normal"
payload __PAYLOAD__
end
romimage "fallback"
option USE_FALLBACK_IMAGE=1
option ROM_IMAGE_SIZE=0x17000
- option LINUXBIOS_EXTRA_VERSION=".0-fallback"
+ option COREBOOT_EXTRA_VERSION=".0-fallback"
payload __PAYLOAD__
end
-buildrom ./linuxbios.rom ROM_SIZE "normal" "fallback"
+buildrom ./coreboot.rom ROM_SIZE "normal" "fallback"
EOF
else
cat <<EOF
romimage "only"
- option LINUXBIOS_EXTRA_VERSION=".0"
+ option COREBOOT_EXTRA_VERSION=".0"
payload __PAYLOAD__
end
-buildrom ./linuxbios.rom ROM_SIZE "only"
+buildrom ./coreboot.rom ROM_SIZE "only"
EOF
fi
) > $TARGET/Config-${VENDOR}_${MAINBOARD}.lb
@@ -403,7 +403,7 @@ function test_target
fi
# image does not exist. we silently skip the patch.
- if [ ! -r "$TARGET/${VENDOR}_${MAINBOARD}/linuxbios.rom" ]; then
+ if [ ! -r "$TARGET/${VENDOR}_${MAINBOARD}/coreboot.rom" ]; then
return 0
fi
@@ -422,9 +422,9 @@ function test_target
printf "Submitting image for board $VENDOR $MAINBOARD to test system...\n"
- curl -f -F "romfile=@$TARGET/${VENDOR}_${MAINBOARD}/linuxbios.rom" \
+ curl -f -F "romfile=@$TARGET/${VENDOR}_${MAINBOARD}/coreboot.rom" \
-F "mode=abuild" -F "mainboard=${VENDOR}_${MAINBOARD}" -F "submit=Upload" \
- "http://qa.linuxbios.org/deployment/send.php"
+ "http://qa.coreboot.org/deployment/send.php"
printf "\n"
return 0
@@ -447,7 +447,7 @@ function myhelp
printf " [-x|--xml] write xml log file \n"
printf " (defaults to $XMLFILE)\n"
printf " [-T|--test] submit image(s) to automated test system\n"
- printf " [lbroot] absolute path to LinuxBIOS sources\n"
+ printf " [lbroot] absolute path to coreboot sources\n"
printf " (defaults to $LBROOT)\n\n"
}
@@ -455,10 +455,10 @@ function myversion
{
cat << EOF
-LinuxBIOS autobuild v$ABUILD_VERSION ($ABUILD_DATE)
+coreboot autobuild v$ABUILD_VERSION ($ABUILD_DATE)
Copyright (C) 2004 by Stefan Reinauer <stepan@openbios.org>
-Copyright (C) 2006 by coresystems GmbH <info@coresystems.de>
+Copyright (C) 2006-2008 by coresystems GmbH <info@coresystems.de>
This program is free software; you may redistribute it under the terms
of the GNU General Public License. This program has absolutely no
diff --git a/util/abuild/abuild.1 b/util/abuild/abuild.1
index 1e5bec7..562bb52 100644
--- a/util/abuild/abuild.1
+++ b/util/abuild/abuild.1
@@ -1,25 +1,25 @@
.TH ABUILD 1 "October 24, 2006"
.SH NAME
-abuild \- build LinuxBIOS images for all available targets
+abuild \- build coreboot images for all available targets
.SH SYNOPSIS
.B abuild
\fR[\fB\-abxVh\fR] [\fB\-t\fR vendor/board] [\fB\-p\fR dir]
[LBROOT]
.SH DESCRIPTION
.B abuild
-is a utility used to easily build LinuxBIOS images for all available targets.
+is a utility used to easily build coreboot images for all available targets.
.SH OPTIONS
The
.B "[LBROOT]"
parameter tells
.B abuild
-where the root directory of the LinuxBIOS build tree resides. Per default
+where the root directory of the coreboot build tree resides. Per default
this is
.B "../.."
as the
.B abuild
script resides in
-.BR "[LBROOT]/utils/abuild" .
+.BR "[CBROOT]/utils/abuild" .
.TP
.B "\-a, \-\-all"
Build previously succeeded ports as well.
@@ -45,7 +45,7 @@ and will be created in the current directory.
.B "\-T, \-\-test"
Submit generated image(s) to the automated test system.
The results of the tests will be made available at
-.B http://qa.linuxbios.org/log_manual.php
+.B http://qa.coreboot.org/log_manual.php
.TP
.B "\-v, \-\-verbose"
More verbose output.
@@ -56,7 +56,7 @@ Show a help text and exit.
.B "\-V, \-\-version"
Show version information and exit.
.SH BUGS
-Please report any bugs at http://tracker.linuxbios.org/.
+Please report any bugs at http://tracker.coreboot.org/.
.SH LICENCE
.B abuild
is covered by the GNU General Public License (GPL), version 2 or later.
OpenPOWER on IntegriCloud