[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1] tools/init-xenstore-domain: fix description of --param
- To: xen-devel@xxxxxxxxxxxxxxxxxxxx
- From: Olaf Hering <olaf@xxxxxxxxx>
- Date: Fri, 23 Apr 2021 12:19:12 +0200
- Arc-authentication-results: i=1; strato.com; dkim=none
- Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; t=1619173155; s=strato-dkim-0002; d=strato.com; h=Message-Id:Date:Subject:Cc:To:From:Cc:Date:From:Subject:Sender; bh=1c/59yaGMP0KFR8kh+rw15Nd5hXXcU0KoDro+7g0wT4=; b=WVcxtmC0CRoK8qg8VzG6sqInMWcV3Ee8WQnaA2lSBqoKkZjNmDFovnIy0xB8O/amFe Vtbx41jUfcK0cMYwTp5OCwGAE3D2kRJ8tbpbIdXlqrDXzKJLdKjlXuNaNcTGYCehI7Hv +VxC43P2yNfW2UNgX3sjmJ9rw6qi7KMXrNsFTXHi2bx29CxPa+R0LsEHXIrYhvOtvgqp fqDeJWWaI0VEvJ9DhJH3Blb/HQfPcIfgD9vr9TrlNIf+Gseo1+bF/AQFT+whRD+uldQr WuOAuO6bSlSTYkRev8Yw7iJAjmmduBsT6WHuTgGBWtmRvCeNIy6Zg7IOYaZoPVBFlUmk W1nA==
- Arc-seal: i=1; a=rsa-sha256; t=1619173155; cv=none; d=strato.com; s=strato-dkim-0002; b=X/vZqeQWN4fpmD7u1adhkUP7vIZhU+7ibvrQl+KOw6DmzrcPmvi5L3zxF7padUku72 AP4zAOCCBNTBERhVf5W5ApYcGI0dtMcBt9Sc46kD8i9wkhMBuEXMyyrAMJS2uePDmDy/ wQ2rIJd/1Fnl/R7rTR3e5HVTrAg9TQsKzgJzWCbHvXPK0JNE7hJ9hpkkOsRbQ4MIPG1K yJEdb12XXw/F+WdNOSvPA9JiUUSFJ9KsBldIdxbfLDeE+NzF1JqJX7vMNOpyQ9wJvifp 13/d+RcIuySDnuf11v1cPyRtGI6XsmJ5SREoEuj86yu3z9kNIeqHZsMnX5SSVtWukkwe 4XGw==
- Authentication-results: strato.com; dkim=none
- Cc: Olaf Hering <olaf@xxxxxxxxx>, Ian Jackson <iwj@xxxxxxxxxxxxxx>, Wei Liu <wl@xxxxxxx>
- Delivery-date: Fri, 23 Apr 2021 10:19:29 +0000
- List-id: Xen developer discussion <xen-devel.lists.xenproject.org>
The string is for the binary within the domain, not for the domain itself.
Fixes commit 83c365e6395f39c7ff91785b400682173d5e5d04
Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
---
tools/helpers/init-xenstore-domain.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tools/helpers/init-xenstore-domain.c
b/tools/helpers/init-xenstore-domain.c
index 6836002f0b..8543a5efd6 100644
--- a/tools/helpers/init-xenstore-domain.c
+++ b/tools/helpers/init-xenstore-domain.c
@@ -58,7 +58,7 @@ static void usage(void)
" --memory <memory size> size of the domain in MB, mandatory\n"
" --flask <flask-label> optional flask label of the domain\n"
" --ramdisk <ramdisk-file> optional ramdisk file for the domain\n"
-" --param <cmdline> optional additional parameters for the domain\n"
+" --param <cmdline> optional additional parameters for xenstored\n"
" --name <name> name of the domain (default: Xenstore)\n"
" --maxmem <max size> maximum memory size in the format:\n"
" <MB val>|<a>/<b>|<MB val>:<a>/<b>\n"
|