From: Ian Campbell <ian.campbell@citrix.com>
To: "longtao.pang" <longtaox.pang@intel.com>
Cc: wei.liu2@citrix.com, robert.hu@intel.com,
Ian.Jackson@eu.citrix.com, xen-devel@lists.xen.org
Subject: Re: [OSSTEST Nested PATCH v10 6/9] Changes on test step of Debian hvm guest install
Date: Wed, 20 May 2015 14:23:07 +0100 [thread overview]
Message-ID: <1432128187.12989.254.camel@citrix.com> (raw)
In-Reply-To: <1431488204-14510-7-git-send-email-longtaox.pang@intel.com>
On Wed, 2015-05-13 at 11:36 +0800, longtao.pang wrote:
> 1. The default disk size for guest is '10000M' which is not sufficient
> for nested HVM guest, using larger disk size for nested guest
> to accommodate to nested test requirement, the specific disk_size is
> defined by make-flight.
> 2. Since 'Debain-xxx-.iso' image will be stored in rootfs of L1 guest,
> therefore needs more disk capacity, increase root partition size to
> 10000M.
> 3. In L1 installation context, assign more memory (defined in runvar) to
> it; Since it acts as a nested hypervisor anyway.
> 4. Comment out CDROM entry in sources.list to make HTTP URL entry
> available for L1 hvm guest.
> 5. Enable nestedhvm feature in 'ExtraConfig' for nested job.
>
> Signed-off-by: longtao.pang <longtaox.pang@intel.com>
> ---
> Changes in v10:
> Based on Ian's v6_patch[04,05,06], use 'preseed_hook_command' to comment out
> CDROM entry in sources.list to make HTTP URL entry available for hvm guest.
> ---
> ts-debian-hvm-install | 18 +++++++++++++++---
> 1 file changed, 15 insertions(+), 3 deletions(-)
>
> diff --git a/ts-debian-hvm-install b/ts-debian-hvm-install
> index d3413e1..e636b1e 100755
> --- a/ts-debian-hvm-install
> +++ b/ts-debian-hvm-install
> @@ -59,7 +59,7 @@ d-i partman-auto/expert_recipe string \\
> use_filesystem{ } filesystem{ vfat } \\
> mountpoint{ /boot/efi } \\
> . \\
> - 5000 50 5000 ext4 \\
> + 10000 50 10000 ext4 \\
> method{ format } format{ } \\
> use_filesystem{ } filesystem{ ext4 } \\
> mountpoint{ / } \\
> @@ -80,6 +80,8 @@ if [ -e \$b/debian/grubx64.efi ] ; then
> mkdir -p \$b/boot
> cp \$b/debian/grubx64.efi \$b/boot/bootx64.efi
> fi
> +
> +in-target sed -i 's/^deb *cdrom/#&/g' /etc/apt/sources.list
In the current osstest production this is at the end of:
preseed_hook_command($gho, 'late_command', '', <<END) if $gsuite =~ /wheezy/;
i.e. it is only done on wheezy (since it is a workaround for a Debian
specific issue).
So you need to add another use of preseed_hook_command to add your new
command.
> @@ -164,13 +170,19 @@ sub prep () {
> if ($host_freemem_mb > $ram_lots * 2 + $ram_minslop) {
> $ram_mb = $ram_lots;
> } else {
> - $ram_mb = 768;
> + # Use guest_var to get specific memsize, or will use default '768'
> + $ram_mb= guest_var($gho,'memsize',768);
> }
> - logm("Host has $host_freemem_mb MB free memory, setting guest memory size to $ram_mb MB");
> + logm("Host has $host_freemem_mb MB free memory,
> + setting guest memory size to $ram_mb MB");
I'm not sure what this will output, but I expect it has far too many
spaces between "," and "setting".
e.g.
print("AAA
BBB");
produces:
AAA
BBB
I think you need to close and reopen the quotes and paste the two
together with . or, better, just leave the log message unwrapped
(wrapping also breaks grep...).
Ian.
next prev parent reply other threads:[~2015-05-20 13:23 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-13 3:36 [OSSTEST Nested PATCH v10 0/9] Introduction of netsted HVM test job longtao.pang
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 1/9] Parsing grub which has 'submenu' primitive longtao.pang
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 2/9] Changes to support '/boot' leading paths of kernel, xen, in grub longtao.pang
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 3/9] Refactor installation of overlays longtao.pang
2015-05-14 10:59 ` Ian Campbell
2015-05-18 9:52 ` Ian Campbell
2015-05-18 12:21 ` Robert Hu
2015-05-20 13:17 ` Ian Campbell
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 4/9] Edit some APIs in TestSupport.pm for nested test longtao.pang
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 5/9] Move the code for setting memory size into prep() longtao.pang
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 6/9] Changes on test step of Debian hvm guest install longtao.pang
2015-05-20 13:23 ` Ian Campbell [this message]
2015-05-20 13:55 ` Ian Campbell
2015-05-26 8:53 ` Pang, LongtaoX
2015-05-26 9:00 ` Ian Campbell
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 7/9] Add new script to customize nested test configuration longtao.pang
2015-05-20 13:28 ` Ian Campbell
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 8/9] Compose the main recipe of nested test job longtao.pang
2015-05-13 3:36 ` [OSSTEST Nested PATCH v10 9/9] Add test job for nest test case longtao.pang
2015-05-20 15:39 ` [OSSTEST Nested PATCH v10 0/9] Introduction of netsted HVM test job Ian Campbell
2015-05-21 6:56 ` Robert Hu
2015-05-21 8:42 ` Ian Campbell
2015-05-21 9:25 ` Pang, LongtaoX
2015-05-21 9:32 ` Ian Campbell
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1432128187.12989.254.camel@citrix.com \
--to=ian.campbell@citrix.com \
--cc=Ian.Jackson@eu.citrix.com \
--cc=longtaox.pang@intel.com \
--cc=robert.hu@intel.com \
--cc=wei.liu2@citrix.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.