From 0476469c1b5272b7a76b22082f0cd44eab24dc22 Mon Sep 17 00:00:00 2001 From: Corentin LABBE Date: Mon, 8 Apr 2019 15:19:49 +0200 Subject: Permit to generate jobs for the upsquare This patch adds suppport for the upsquare. Upsquare use a GRUB boot method, so we needed to add a new generic-grub-tftp boot template. Since all x86_64 use the same yocto generated build name, we add a new upsquare machine, but tweaked a bit utils/agljobtemplate.py to keep intel-corei7-64 everywhere (except for the LAVA device-type). Bug-AGL: SPEC-2075 Change-Id: I15c850fada53efbcda4fd58527d7b7414865f89d Signed-off-by: Corentin LABBE --- templates/machines/upsquare.jinja2 | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 templates/machines/upsquare.jinja2 (limited to 'templates/machines/upsquare.jinja2') diff --git a/templates/machines/upsquare.jinja2 b/templates/machines/upsquare.jinja2 new file mode 100644 index 0000000..46ced27 --- /dev/null +++ b/templates/machines/upsquare.jinja2 @@ -0,0 +1,8 @@ +{%- extends 'boot/generic-grub-tftp.jinja2' %} +{%- set device_arch = "x86" %} +{%- set device_mach = "intel" %} +{%- set device_type = "upsquare" %} +{%- set yocto_machine = "intel-corei7-64" %} +{%- set kernel_image = kernel_image|default("bzImage") %} +{%- set rootfs_type = rootfs_type|default("nbd") %} +{%- set rfs_image = rfs_image|default("agl-demo-platform-crosssdk-intel-corei7-64.ext4.xz") %} -- cgit 1.2.3-korg