1
0
mirror of synced 2026-01-23 10:38:15 +00:00

2006-08-19 07:46:41 by steve

When no initrd is being used the xm.tmpl file shouldn't insert
 a ramdisk.  Closes: 383703

  Patch from Henning Sprang
This commit is contained in:
steve 2006-08-19 07:46:41 +00:00
parent d27df26181
commit 60bb043282
3 changed files with 12 additions and 1 deletions

View File

@ -17,6 +17,9 @@ Contributions
Edd Dumbill <edd [at] com.usefulinc>
- Contributed APT sources.list file for Ubuntus Dapper release.
Henning Sprang <henning_sprang [at] de.gmx>
- Many suggestions and useful Debian bug reports.
Sven Hertge <sven [at] de.svenhartge>
- Bugfix for Debian/Gentoo package installation.

4
debian/changelog vendored
View File

@ -1,3 +1,7 @@
* New upstream release.
- Don't setup ramdisk in xm.tmpl if one isn't being used.
(Closes: #383703)
xen-tools (2.3-1) unstable; urgency=high
* Urgency set to high because the software will not work correctly unless

View File

@ -8,7 +8,11 @@
# Kernel + memory size
#
kernel = '{$kernel}'
ramdisk = '{$initrd}'
{ if ( $initrd )
{
$OUT.= "ramdisk = '$initrd'\n";
}
}
memory = '{$memory}'