From: Jan Kiszka <[email protected]> Only works for > 0.9.1 because that version still uses configs to statically configure inmates. There is no point in introducing machine-specific Jailhouse packages anymore as we will soon have a new release that won't have that restriction.
Signed-off-by: Jan Kiszka <[email protected]> --- recipes-jailhouse/jailhouse/jailhouse.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes-jailhouse/jailhouse/jailhouse.inc b/recipes-jailhouse/jailhouse/jailhouse.inc index 15f2c21..89e1eb5 100644 --- a/recipes-jailhouse/jailhouse/jailhouse.inc +++ b/recipes-jailhouse/jailhouse/jailhouse.inc @@ -13,6 +13,9 @@ python() { machine = d.getVar('MACHINE', True) if machine in ['qemuamd64', 'nuc6cay']: machine = 'x86-64' + # only work with --latest where configs became obsolete + if machine == 'espressobin': + machine = 'qemuarm64' d.setVar('JAILHOUSE_CONFIG', machine + '_config.h') } -- 2.16.4 -- You received this message because you are subscribed to the Google Groups "Jailhouse" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
