zephyr-kernel: Add SUMMARY and DESCRIPTION for classic sample apps

Hello World and Philosophers do not have a SUMMARY or DESCRIPTION, so
add these to both recipes.

Signed-off-by: Peter Hoyes <Peter.Hoyes@arm.com>
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
This commit is contained in:
Peter Hoyes
2022-08-03 14:35:30 +01:00
committed by Naveen Saini
parent 0339aa8170
commit 6107faa87f
2 changed files with 9 additions and 0 deletions

View File

@@ -1,3 +1,7 @@
SUMMARY = "Hello World Zephyr Sample"
DESCRIPTION = "A simple Zephyr application that prints 'Hello World' on the \
console"
include zephyr-sample.inc
ZEPHYR_SRC_DIR = "${S}/samples/hello_world"

View File

@@ -1,3 +1,8 @@
SUMMARY = "Philosophers Zephyr Sample"
DESCRIPTION = "A simple Zephyr application that demonstrates basic sanity of \
the kernel. It demonstrates that kernel scheduling, communication and timing \
operate correctly by printing a greeting to the console from two threads."
include zephyr-sample.inc
ZEPHYR_SRC_DIR = "${S}/samples/philosophers"