diff options
author | Petr Štetiar <ynezz@true.cz> | 2018-11-23 10:53:37 +0100 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2018-11-26 09:39:20 +0100 |
commit | 493c9a35516c27a8ec412d97e63c8cf6f41a57ea (patch) | |
tree | 98ec22b24840af0afc0224499d2416f608390534 /package/firmware/vsc73x5-ucode/Makefile | |
parent | b0d6653ab8d4c65aca73c0d845ec4056da97d4ec (diff) | |
download | upstream-493c9a35516c27a8ec412d97e63c8cf6f41a57ea.tar.gz upstream-493c9a35516c27a8ec412d97e63c8cf6f41a57ea.tar.bz2 upstream-493c9a35516c27a8ec412d97e63c8cf6f41a57ea.zip |
build: Introduce building of artifacts
We currently could (ab)use IMAGES for this task, but the downside is,
that the filenames has filesystem tied to the filename, which might be
confusing as the artifact itself don't has to be used with that specific
filesystem. Another downside is, that the artifacts built with IMAGES
target are build for every FILESYSTEMS filesystem.
Consider following use case:
define Device/apalis
...
FILESYSTEMS := ext4 squashfs
IMAGES := spl-uboot.bin recovery.scr
IMAGE/spl-uboot.bin := append-uboot-spl | pad-to 68k | append-uboot
IMAGE/recovery.scr := recovery-scr
endef
Where we would get target binaries with following filenames:
openwrt-imx6-apalis-squashfs.recovery.scr
openwrt-imx6-apalis-squashfs.spl-uboot.bin
openwrt-imx6-apalis-ext4.recovery.scr
openwrt-imx6-apalis-ext4.spl-uboot.bin
With proposed patch, we could now just do:
define Device/apalis
...
ARTIFACTS := spl-uboot.bin recovery.scr
ARTIFACT/spl-uboot.bin := append-uboot-spl | pad-to 68k | append-uboot
ARTIFACT/recovery.scr := recovery-scr
endef
Which would produce target binaries with following filenames:
openwrt-imx6-apalis-recovery.scr
openwrt-imx6-apalis-spl-uboot.bin
Signed-off-by: Petr Štetiar <ynezz@true.cz>
Acked-by: Hauke Mehrtens <hauke@hauke-m.de>
Diffstat (limited to 'package/firmware/vsc73x5-ucode/Makefile')
0 files changed, 0 insertions, 0 deletions