|
|
0d20ef |
From 7d87f9e4a5e9e8a77a4750cec9c5fa7618e3aca1 Mon Sep 17 00:00:00 2001
|
|
|
0d20ef |
From: "Richard W.M. Jones" <rjones@redhat.com>
|
|
|
0d20ef |
Date: Mon, 17 Nov 2014 10:07:28 +0000
|
|
|
0d20ef |
Subject: [PATCH] Fix description of 'set_append' and 'get_append' APIs
|
|
|
0d20ef |
(RHBZ#1164732).
|
|
|
0d20ef |
|
|
|
0d20ef |
These should refer to the libguestfs appliance kernel command
|
|
|
0d20ef |
line, not the guest kernel command line.
|
|
|
0d20ef |
|
|
|
0d20ef |
Thanks: Lingfei Kong
|
|
|
0d20ef |
(cherry picked from commit 6dd371f913332a840b34ad00d52e9fa52711fb0e)
|
|
|
0d20ef |
---
|
|
|
0d20ef |
generator/actions.ml | 4 ++--
|
|
|
0d20ef |
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
0d20ef |
|
|
|
0d20ef |
diff --git a/generator/actions.ml b/generator/actions.ml
|
|
|
0d20ef |
index 4cfba0d..593e51b 100644
|
|
|
0d20ef |
--- a/generator/actions.ml
|
|
|
0d20ef |
+++ b/generator/actions.ml
|
|
|
0d20ef |
@@ -398,7 +398,7 @@ return the default path." };
|
|
|
0d20ef |
shortdesc = "add options to kernel command line";
|
|
|
0d20ef |
longdesc = "\
|
|
|
0d20ef |
This function is used to add additional options to the
|
|
|
0d20ef |
-guest kernel command line.
|
|
|
0d20ef |
+libguestfs appliance kernel command line.
|
|
|
0d20ef |
|
|
|
0d20ef |
The default is C<NULL> unless overridden by setting
|
|
|
0d20ef |
C<LIBGUESTFS_APPEND> environment variable.
|
|
|
0d20ef |
@@ -417,7 +417,7 @@ are passed (libguestfs always adds a few of its own)." };
|
|
|
0d20ef |
shortdesc = "get the additional kernel options";
|
|
|
0d20ef |
longdesc = "\
|
|
|
0d20ef |
Return the additional kernel options which are added to the
|
|
|
0d20ef |
-guest kernel command line.
|
|
|
0d20ef |
+libguestfs appliance kernel command line.
|
|
|
0d20ef |
|
|
|
0d20ef |
If C<NULL> then no options are added." };
|
|
|
0d20ef |
|
|
|
0d20ef |
--
|
|
|
0d20ef |
1.8.3.1
|
|
|
0d20ef |
|