mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-01 13:58:06 +00:00
* Remove all PR = "r0" from all .bb files in meta-oe repo. This was done with the command sed -e '/^PR.*=.*r0\"/d' meta*/recipes*/*/*.bb -i * We've switching to the PR server, PR bumps are no longer needed and this saves people either accidentally bumping them or forgetting to remove the lines (r0 is the default anyway). Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
21 lines
654 B
BlitzBasic
21 lines
654 B
BlitzBasic
DESCRIPTION = "Receive a forwarded serial from serial-forward and provide a PTY"
|
|
AUTHOR = "Holger 'Zecke' Freyther"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=ebb5c50ab7cab4baeffba14977030c07"
|
|
SECTION = "console/network"
|
|
SRCREV = "00dbec2636ae0385ad028587e20e446272ff97ec"
|
|
PV = "1.1+gitr${SRCPV}"
|
|
|
|
SRC_URI = "${FREESMARTPHONE_GIT}/cornucopia"
|
|
S = "${WORKDIR}/git/tools/serial_forward"
|
|
|
|
inherit autotools native
|
|
|
|
do_deploy[sstate-outputdirs] = "${DEPLOY_DIR_IMAGE}"
|
|
do_deploy() {
|
|
install -d ${DEPLOY_DIR_IMAGE}
|
|
install -m 0755 ${S}/src/pty_forward ${DEPLOY_DIR_IMAGE}/pty-forward
|
|
}
|
|
|
|
addtask deploy before do_package after do_install
|