move sample apps to top level directory under samples/
All 'real' sample application now reside under samples/ directly. the nano and micro variants will be under the specific sample directory and not split across the file system. Change-Id: I0ddf929cff7a29749aa4944b4385af058d9cc74c Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
parent
8290b4c795
commit
18cc4a8ea3
74 changed files with 10 additions and 13 deletions
|
|
@ -1,6 +1,6 @@
|
|||
KERNEL_TYPE = nano
|
||||
BOARD ?= qemu_x86
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/microkernel/apps/cpp_synchronization/src/
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/cpp_synchronization/microkernel/src/
|
||||
CONF_FILE = prj.conf
|
||||
|
||||
|
||||
3
samples/kernel_event_logger/microkernel/src/Makefile
Normal file
3
samples/kernel_event_logger/microkernel/src/Makefile
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
ccflags-y += -I${ZEPHYR_BASE}/samples/philosophers/microkernel/src
|
||||
|
||||
obj-y = kernel_event_collector_sample.o ../../../philosophers/microkernel/src/phil_fiber.o
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
KERNEL_TYPE = nano
|
||||
BOARD ?= qemu_x86
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/microkernel/apps/kernel_event_logger/src/
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/kernel_event_logger/microkernel/src/
|
||||
CONF_FILE = prj_$(ARCH).conf
|
||||
|
||||
include ${ZEPHYR_BASE}/Makefile.inc
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
ccflags-y += ${PROJECTINCLUDE}
|
||||
cxxflags-y += ${PROJECTINCLUDE}
|
||||
|
||||
obj-y = main.o
|
||||
|
|
@ -1,3 +0,0 @@
|
|||
ccflags-y += -I${ZEPHYR_BASE}/samples/microkernel/apps/philosophers/src
|
||||
|
||||
obj-y = kernel_event_collector_sample.o ../../../../microkernel/apps/philosophers/src/phil_fiber.o
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
KERNEL_TYPE = nano
|
||||
BOARD ?= qemu_x86
|
||||
CONF_FILE = debug.conf
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/nanokernel/apps/synchronization/src/
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/synchronization/nanokernel/src/
|
||||
|
||||
include ${ZEPHYR_BASE}/Makefile.inc
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
KERNEL_TYPE = nano
|
||||
BOARD ?= qemu_x86
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/microkernel/apps/philosophers/src/
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/philosophers/microkernel/src/
|
||||
CONF_FILE = prj_$(ARCH).conf
|
||||
|
||||
include ${ZEPHYR_BASE}/Makefile.inc
|
||||
1
samples/synchronization/microkernel/src/Makefile
Normal file
1
samples/synchronization/microkernel/src/Makefile
Normal file
|
|
@ -0,0 +1 @@
|
|||
obj-y = main.o
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
KERNEL_TYPE = nano
|
||||
BOARD ?= quark_se
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/nanokernel/apps/synchronization/src/
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/synchronization/nanokernel/src/
|
||||
CONF_FILE = prj.conf
|
||||
|
||||
include ${ZEPHYR_BASE}/Makefile.inc
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
KERNEL_TYPE = nano
|
||||
BOARD ?= arduino_101_sss
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/nanokernel/apps/synchronization/src/
|
||||
SOURCE_DIR = $(ZEPHYR_BASE)/samples/synchronization/nanokernel/src/
|
||||
CONF_FILE = prj.conf
|
||||
|
||||
include ${ZEPHYR_BASE}/Makefile.inc
|
||||
|
|
|
|||
Loading…
Reference in a new issue