diff options
author | Kim <kim.sidney@gmail.com> | 2019-11-15 11:43:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-15 11:43:56 +0100 |
commit | 0cd87801a99752c4e2f59a9a827a27eb185b1f97 (patch) | |
tree | a3527aa5b5f23ecef6c3d269329b9623a40d8f16 /Makefile | |
parent | d60c2db612d84e097f274f87a227c905600e1356 (diff) | |
parent | a46cc51b62ef8afeb44f125b9d27fb7a9d7cfb1f (diff) | |
download | vyos-build-0cd87801a99752c4e2f59a9a827a27eb185b1f97.tar.gz vyos-build-0cd87801a99752c4e2f59a9a827a27eb185b1f97.zip |
Merge pull request #65 from DmitriyEshenko/crux-int-name
add build option for Edge-Core saf51015I
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -213,6 +213,21 @@ vep4600: check_build_config clean prepare cd .. @scripts/copy-image +.PHONY: saf51015I +.ONESHELL: +saf51015I: check_build_config clean prepare + @set -e + @echo "It's not like I'm building this specially for you or anything!" + mkdir -p build/config/includes.chroot/etc/systemd/network + mkdir -p build/config/includes.chroot/usr/share/initramfs-tools/hooks + cp tools/saf51015I/90-saf51015I.chroot build/config/hooks/live/ + cp tools/saf51015I/*.link build/config/includes.chroot/etc/systemd/network/ + cp tools/saf51015I/saf51015I build/config/includes.chroot/usr/share/initramfs-tools/hooks/ + cd $(build_dir) + lb build 2>&1 | tee build.log + cd .. + @scripts/copy-image + .PHONY: clean .ONESHELL: clean: |