mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-27 10:14:47 +00:00
14 lines
473 B
Makefile
14 lines
473 B
Makefile
ifndef ARCH
|
|
$(error $$ARCH not set)
|
|
endif
|
|
|
|
.PHONY: onl-buildroot-fit.itb onl-buildroot-fit.its
|
|
|
|
onl-buildroot-fit.itb:
|
|
$(ONL)/tools/flat-image-tree.py --initrd onl-buildroot-initrd:$(ARCH),onl-buildroot-initrd-$(ARCH).cpio.gz --arch $(ARCH) --add-platform all --itb $@
|
|
|
|
onl-buildroot-fit.its:
|
|
$(ONL)/tools/flat-image-tree.py --initrd onl-buildroot-initrd:$(ARCH),onl-buildroot-initrd-$(ARCH).cpio.gz --arch $(ARCH) --add-platform all --its $@
|
|
|
|
its: onl-buildroot-fit.its
|