blob: 972070d6b6c0e87876ba21d235f3d659b433c1ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
LICENSE="GPL"
SUMMARY="Receive a forwarded serial from serial-forward and provide a PTY"
SRC_URI="svn://svn.openmoko.org/developers/zecke/;module=serial_forward;proto=http"
S = "${WORKDIR}/serial_forward"
inherit native
do_compile() {
cd ${S}
oe_runmake
}
do_stage() {
:
}
do_deploy() {
install -d ${DEPLOY_DIR_IMAGE}
install -m 0755 ${S}/pty_forward ${DEPLOY_DIR_IMAGE}/pty-forward
}
addtask deploy before do_package after do_install
|