summaryrefslogtreecommitdiffstats
path: root/scripts/lib/wic/help.py
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/lib/wic/help.py')
-rw-r--r--scripts/lib/wic/help.py56
1 files changed, 56 insertions, 0 deletions
diff --git a/scripts/lib/wic/help.py b/scripts/lib/wic/help.py
index af7d0576e2..968cc0ed6f 100644
--- a/scripts/lib/wic/help.py
+++ b/scripts/lib/wic/help.py
@@ -1046,3 +1046,59 @@ NAME
1046DESCRIPTION 1046DESCRIPTION
1047 Specify a help topic to display it. Topics are shown above. 1047 Specify a help topic to display it. Topics are shown above.
1048""" 1048"""
1049
1050
1051wic_help = """
1052Creates a customized OpenEmbedded image.
1053
1054Usage: wic [--version]
1055 wic help [COMMAND or TOPIC]
1056 wic COMMAND [ARGS]
1057
1058 usage 1: Returns the current version of Wic
1059 usage 2: Returns detailed help for a COMMAND or TOPIC
1060 usage 3: Executes COMMAND
1061
1062
1063COMMAND:
1064
1065 list - List available canned images and source plugins
1066 ls - List contents of partitioned image or partition
1067 rm - Remove files or directories from the vfat or ext* partitions
1068 help - Show help for a wic COMMAND or TOPIC
1069 write - Write an image to a device
1070 cp - Copy files and directories to the vfat or ext* partitions
1071 create - Create a new OpenEmbedded image
1072
1073
1074TOPIC:
1075 overview - Presents an overall overview of Wic
1076 plugins - Presents an overview and API for Wic plugins
1077 kickstart - Presents a Wic kicstart file reference
1078
1079
1080Examples:
1081
1082 $ wic --version
1083
1084 Returns the current version of Wic
1085
1086
1087 $ wic help cp
1088
1089 Returns the SYNOPSIS and DESCRIPTION for the Wic "cp" command.
1090
1091
1092 $ wic list images
1093
1094 Returns the list of canned images (i.e. *.wks files located in
1095 the /scripts/lib/wic/canned-wks directory.
1096
1097
1098 $ wic create mkefidisk -e core-image-minimal
1099
1100 Creates an EFI disk image from artifacts used in a previous
1101 core-image-minimal build in standard BitBake locations
1102 (e.g. Cooked Mode).
1103
1104"""