[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [TESTDAY] Test report
On Tue, 23 May 2017, Andrii Anisov wrote: > Raisin is not functional as described [2]: > > root@salvator-x-domx:/raisin# ./raise test > No config file found, copying default config > [raisin] I don't know distro unknown. It might be missing packages. > [raisin] I don't know distro unknown. It might be missing packages. > [raisin] I don't know distro unknown. Cannot install packages. > > [1] http://elinux.org/R-Car/Boards/Yocto-Gen3 > [2] https://wiki.xenproject.org/wiki/Xen_ARM_Manual_Smoke_Test Hi Andrii, thanks for testing! I have just run `raise test` on ARM64 to double check: it works OK as long as it can recognize the distro and find the host kernel and initrd appropriately (for example, as I was using a custom built xen and dom0 kernel I had to use the appended patch). In your case the problem is that you are using yocto and basically there is no yocto support in raisin at the moment: it cannot recognize it as a distro, therefore it cannot figure out if bridge-utils is already installed for example. It would be nice to have yocto support for it though, I don't think it would be hard to come up with a patch and it gives you a very quick way to do testing! ;-) diff --git a/lib/common-tests.sh b/lib/common-tests.sh index c07bb18..80b61d5 100644 --- a/lib/common-tests.sh +++ b/lib/common-tests.sh @@ -163,20 +163,11 @@ function check_guest_alive() { } function get_host_kernel() { - echo "/boot/vmlinuz-`uname -r`" + echo "/boot/kernel" } function get_host_initrd() { - if [[ $DISTRO = "Debian" ]] - then - echo "/boot/initrd.img-`uname -r`" - elif [[ $DISTRO = "Fedora" ]] - then - echo "/boot/initramfs-`uname -r`".img - else - echo "$PREPEND I don't know how to find the initrd" >&2 - exit 1 - fi + echo "" } function cirros_network_init() { _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |