diff options
author | Loys Ollivier <lollivier@baylibre.com> | 2017-10-05 18:41:07 +0200 |
---|---|---|
committer | Loys Ollivier <lollivier@baylibre.com> | 2017-10-06 11:56:09 +0200 |
commit | 0b427702e5f32f8573620a6770cb234bc31e2415 (patch) | |
tree | 3e485affca826d1449be4bfaa7d1a9a148c6e444 /templates/machines/porter.jinja2 | |
parent | d32e1ebcafc22434624ec6ae68bd404bb088a513 (diff) |
New arguments to specify build artifacts names
Added new command line arguments to specifiy build artifacts names:
- "--rootfs-img": for the rootfs file name
- "--kernel-img": for the kernel name
- "--dtb-img": for the dtb file name
- "--modules-img": for the modules file name
Change-Id: I665dee2b326aeaaf35148345f0501e49950ba9aa
Signed-off-by: Loys Ollivier <lollivier@baylibre.com>
Diffstat (limited to 'templates/machines/porter.jinja2')
-rw-r--r-- | templates/machines/porter.jinja2 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/machines/porter.jinja2 b/templates/machines/porter.jinja2 index f5d3aeb..1ad6e7b 100644 --- a/templates/machines/porter.jinja2 +++ b/templates/machines/porter.jinja2 @@ -1,6 +1,6 @@ {%- extends 'boot/generic-uboot-tftp.jinja2' %} {%- set device_type = "renesas-porter-uboot" %} {%- set dl_dir = "porter-nogfx" %} -{%- set dtb = "uImage-r8a7791-porter.dtb" %} -{%- set nbdinitrd = "initramfs-netboot-image-" + yocto_machine +".ext4.gz.u-boot" %} +{%- set dtb = dtb|default("uImage-r8a7791-porter.dtb") %} +{%- set initrd = initrd|default("initramfs-netboot-image-" + yocto_machine +".ext4.gz.u-boot") %} {%- set rootfs_type = rootfs_type|default("nbd") %} |