aboutsummaryrefslogtreecommitdiffstats
path: root/simpad-utilities/serload-native.oe
blob: bebfd4820fbf472d7d7d843fe3f62bc413460fbd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
DESCRIPTION = "Console utility for transferring a SIMpad boot image via serial a SIMpad"
FILESDIR = "${@os.path.dirname(oe.data.getVar('FILE',d,1))}/serload"
SRC_URI = "file://serialdownload.cpp file://main.cpp file://serialdownload.h"

inherit native

do_compile() {
	cp ${WORKDIR}/*.h ${WORKDIR}/*.cpp .
	${CXX} -I. -o serload main.cpp serialdownload.cpp
}

do_stage() {
	install -m 0755 serload ${STAGING_BINDIR}/
}