diff --git a/make/ni.mk b/make/ni.mk index ee1f9a8b..15481a5a 100644 --- a/make/ni.mk +++ b/make/ni.mk @@ -90,6 +90,7 @@ ifeq ($(BOXSERIES), $(filter $(BOXSERIES), hd2 ax)) endif ifeq ($(BOXSERIES), ax) make -j$(NUM_CPUS) ofgwrite + make -j$(NUM_CPUS) aio-grab make stb-startup endif ifeq ($(DEBUG), yes) diff --git a/make/system-tools.mk b/make/system-tools.mk index f35f42df..25773a34 100644 --- a/make/system-tools.mk +++ b/make/system-tools.mk @@ -983,3 +983,22 @@ $(D)/ofgwrite: | $(TARGETPREFIX) sed -i "s,/usr/bin/,/bin/," $(TARGETPREFIX)/bin/ofgwrite $(REMOVE)/ofgwrite touch $@ + +$(D)/aio-grab: $(D)/zlib $(D)/libpng $(D)/libjpeg | $(TARGETPREFIX) + $(REMOVE)/aio-grab + cd $(BUILD_TMP); \ + git clone git://github.com/oe-alliance/aio-grab.git aio-grab; \ + cd aio-grab; \ + aclocal --force -I m4; \ + libtoolize --copy --ltdl --force; \ + autoconf --force; \ + automake --add-missing --copy --force-missing --foreign; \ + $(CONFIGURE) \ + --target=$(TARGET) \ + --prefix= \ + --enable-silent-rules \ + ; \ + $(MAKE) all; \ + $(MAKE) install DESTDIR=$(TARGETPREFIX) + $(REMOVE)/aio-grab + touch $@