diff options
author | 2020-01-06 18:30:46 +0800 | |
---|---|---|
committer | 2020-03-31 17:23:14 +0800 | |
commit | f42b7073cbd9abfe45b58ae836dacd809ff231f6 (patch) | |
tree | 2c7e2466f154a3832af6c8a7dd71a975d8a65370 | |
parent | 6ce72628e4dcc3b8bd3a94343e789dbcf563a391 (diff) | |
download | meta-zephyr-f42b7073cbd9abfe45b58ae836dacd809ff231f6.tar.gz meta-zephyr-f42b7073cbd9abfe45b58ae836dacd809ff231f6.tar.bz2 meta-zephyr-f42b7073cbd9abfe45b58ae836dacd809ff231f6.zip |
zephyr-getchar_git: remove sample program
This sample program does not exist anymore.
Signed-off-by: Naveen Saini <naveen.kumar.saini@intel.com>
-rw-r--r-- | recipes-zephyr/zephyr-getchar/zephyr-getchar_git.bb | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes-zephyr/zephyr-getchar/zephyr-getchar_git.bb b/recipes-zephyr/zephyr-getchar/zephyr-getchar_git.bb deleted file mode 100644 index f721033..0000000 --- a/recipes-zephyr/zephyr-getchar/zephyr-getchar_git.bb +++ /dev/null @@ -1,26 +0,0 @@ - -LICENSE="Apache-2.0" -LIC_FILES_CHKSUM = "file://src/zephyr_getchar.c;beginline=1;endline=15;md5=d78a817213b11b6bcd9fe41669a2fd4a" -inherit deploy - -require recipes-kernel/zephyr-kernel/zephyr-kernel-common.inc - -SRCREV="b8d511be4d2b9e05c6adb413a33d6ea510aa0c6a" -SRC_URI = "git://github.com/pfalcon/zephyr_console_helpers.git;protocol=https" -S = "${WORKDIR}/git/zephyr_getchar" - -ZEPHYR_SRC_DIR = "${S}" -ZEPHYR_BASE="${STAGING_DIR_TARGET}/usr/src/zephyr" - -DEPENDS += "zephyr-kernel-src" - -do_compile () { - cd ${ZEPHYR_SRC_DIR} - oe_runmake ${ZEPHYR_MAKE_ARGS} -} - -do_deploy () { - install -D ${S}/outdir/${BOARD}/zephyr.elf ${DEPLOYDIR}/${PN}.elf -} - -addtask deploy after do_compile |