summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Abraham <thomas.abraham@arm.com>2019-01-18 14:08:07 +0530
committerThomas Abraham <thomas.abraham@arm.com>2019-02-13 17:33:10 +0530
commit91acc3e940b95aea620edab936a222789a4987e4 (patch)
tree64c85251d21276b65af6c9f5419644eb758ce321
parent8949ba8da768708b3d4998240ac535ec1935e716 (diff)
sgi/boot: change the boot script name from busybox.sh to boot.sh
On SGI platforms, the simple boot test uses busybox as the filesystem and there is no other file system supported for simple boot test. So instead of naming the boot test script as "busybox_boot.sh", name it as "boot.sh" Change-Id: I4d3f659e9be8ca1c49e7d415cf8f291b92c8fdfd Signed-off-by: Thomas Abraham <thomas.abraham@arm.com>
-rwxr-xr-xsgi/boot.sh (renamed from sgi/busybox_boot.sh)37
1 files changed, 18 insertions, 19 deletions
diff --git a/sgi/busybox_boot.sh b/sgi/boot.sh
index 1fef222..b37a288 100755
--- a/sgi/busybox_boot.sh
+++ b/sgi/boot.sh
@@ -48,36 +48,35 @@ __print_supported_sgi_platforms()
print_usage ()
{
- echo "Usage: ./busybox_boot.sh -p <platform> [-n <true|false>] [-a \"model params\"] [-j \"0|1\"]"
echo ""
- echo "Boots upto busybox console on a specified System Guidance for Infrastructure"
- echo "platform."
+ echo "Boots upto busybox console on a specified SGI platform."
+ echo "Usage: ./boot.sh -p <platform> [-n <true|false>] [-a \"model params\"] [-j <true|false>]"
echo ""
echo "Supported command line parameters - "
- echo " -p specifies the SGI platform to be selected. See below for list of"
- echo " SGI platforms supported \(mandatory\)"
- echo " -n enable or disable network controller support on the platform \(optional\)."
- echo " If not specified, network support is disabled by default."
- echo " -a Additional model parameters \(optional\)."
- echo " -j Enable or disable auto termination of the model after booting upto"
- echo " a busybox shell \(optional\). If not specified, default behaviour is"
- echo " to keep the model executing."
+ echo " -p Specifies the SGI platform to be selected. See below for list of"
+ echo " SGI platforms supported \(mandatory\)"
+ echo " -n Enable or disable network controller support on the platform \(optional\)."
+ echo " If not specified, network support is disabled by default."
+ echo " -j Enable or disable auto termination of the model after booting upto"
+ echo " a busybox shell \(optional\). If not specified, default behaviour is"
+ echo " to keep the model executing."
+ echo " -a Additional model parameters \(optional\)."
echo ""
__print_supported_sgi_platforms
echo ""
echo "Example 1: ./busybox_boot.sh -p sgi575"
- echo " This command starts the execution of the SGI-575 model and the software boots"
- echo " upto the busybox prompt"
+ echo " Starts the execution of the SGI-575 model and the software boots upto the"
+ echo " busybox prompt"
echo ""
echo "Example 2: ./busybox_boot.sh -p sgi575 -n true"
- echo " This command starts the execution of the SGI-575 model and the software boots"
- echo " upto the busybox prompt. The model supports networking allowing the software"
- echo " running within the model to access the network."
+ echo " Starts the execution of the SGI-575 model and the software boots upto the"
+ echo " busybox prompt. The model supports networking allowing the software running"
+ echo " within the model to access the network."
echo ""
echo "Example 3: ./busybox_boot.sh -p sgi575 -n true -a \"board.flash0.diagnostics=1\""
- echo " This command starts the execution of the SGI-575 model with networking"
- echo " enabled and the software boots upto the busybox prompt. Additional"
- echo " parameters to the model are supplied using the -a command line parameter."
+ echo " Starts the execution of the SGI-575 model with networking enabled and the"
+ echo " software boots upto the busybox prompt. Additional parameters to the model"
+ echo " are supplied using the -a command line parameter."
echo ""
}