[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH OSSTEST v3 02/11] mg-debian-installer-update: updates to better handle Jessie onwards.
On Wed, 2015-06-17 at 14:06 +0100, Wei Liu wrote: > +case $suite_$arch in Sorry, this is buggy, it looks for a variable named "suite_" which doesn't exist and so nothing matches. It needs this: diff --git a/mg-debian-installer-update b/mg-debian-installer-update index b9b1146..6a26675 100755 --- a/mg-debian-installer-update +++ b/mg-debian-installer-update @@ -102,7 +102,7 @@ done # Some platforms require a newer kernel than is in Debian. Construct # something suitable from the latest kernel ($bpok=flavour) in # backports. -case $suite_$arch in +case ${suite}_${arch} in wheezy_armhf) bpok=armmp; need_initramfs=y;; esac if [ x$bpok != x ]; then Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |