aboutsummaryrefslogtreecommitdiff
path: root/zephyr/make-minimal
diff options
context:
space:
mode:
authorDamien George2017-09-06 13:40:51 +1000
committerDamien George2017-09-06 13:40:51 +1000
commit01dd7804b87d60b2deab16712eccb3b97351a9b7 (patch)
tree1aa21f38a872b8e62a3d4e4f74f68033c6f827e4 /zephyr/make-minimal
parenta9862b30068fc9df1022f08019fb35aaa5085f64 (diff)
ports: Make new ports/ sub-directory and move all ports there.
This is to keep the top-level directory clean, to make it clear what is core and what is a port, and to allow the repository to grow with new ports in a sustainable way.
Diffstat (limited to 'zephyr/make-minimal')
-rwxr-xr-xzephyr/make-minimal16
1 files changed, 0 insertions, 16 deletions
diff --git a/zephyr/make-minimal b/zephyr/make-minimal
deleted file mode 100755
index 1fc143e4d..000000000
--- a/zephyr/make-minimal
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-#
-# This is a wrapper for make to build a "minimal" Zephyr port.
-# It should be run just like make (i.e. extra vars can be passed on the
-# command line, etc.), e.g.:
-#
-# ./make-minimal BOARD=qemu_cortex_m3
-# ./make-minimal BOARD=qemu_cortex_m3 run
-#
-
-make \
- CONF_FILE=prj_minimal.conf \
- CFLAGS_EXTRA='-DMP_CONFIGFILE="<mpconfigport_minimal.h>"' \
- FROZEN_DIR= \
- QEMU_NET=0 \
- "$@"