From: Martin Vajnar Date: Mon, 18 Nov 2013 15:18:52 +0000 (+0100) Subject: Add makefile for gumstix and toradex X-Git-Url: http://rtime.felk.cvut.cz/gitweb/eurobot/public.git/commitdiff_plain/a277624d40ca7bfed604e0bfb4b25840bba07946 Add makefile for gumstix and toradex --- diff --git a/openembedded/.gitignore b/openembedded/.gitignore new file mode 100644 index 00000000..801d0fc8 --- /dev/null +++ b/openembedded/.gitignore @@ -0,0 +1,6 @@ +.pc/ +build/bitbake.lock +build/cache/ +build/conf/sanity_info +build/downloads/ +build/out-eglibc/ diff --git a/openembedded/Makefile b/openembedded/Makefile new file mode 100644 index 00000000..602d6f5a --- /dev/null +++ b/openembedded/Makefile @@ -0,0 +1,13 @@ +all: gumstix toradex + +init: + quilt pop -a + quilt push -a + +gumstix: init + . openembedded-core/oe-init-build-env && \ + MACHINE=overo bitbake core-image-minimal + +toradex: init + . openembedded-core/oe-init-build-env && \ + MACHINE=colibri-t20 bitbake core-image-minimal