aboutsummaryrefslogtreecommitdiffstats
path: root/packages/s3c2410-utils/s3c2410-boot-usb-native_20060807.bb
blob: f53d175a802e7d260f4b6d0db46392f2232a0445 (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
25
26
27
28
29
30
DESCRIPTION = "Boots a S3C2410 device with a user supplied kernel zImage"
DEPENDS = "libusb-native"
SECTION = "devel"
AUTHOR = "Harald Welte"
LICENSE = "GPL"
PR = "r0"

SRC_URI = "file://s3c2410_boot_usb-20060807.tar.bz2"
S = "${WORKDIR}/s3c2410_boot_usb"

inherit native

do_compile() {
	${CC} ${CFLAGS} ${LDFLAGS} -lusb -o s3c2410-boot-usb boot_usb.c
}

do_deploy() {
        install -d ${DEPLOY_DIR_IMAGE}
        install -m 0755 s3c2410-boot-usb ${DEPLOY_DIR_IMAGE}
}

do_stage() {
	:
}

do_install() {
	:
}

addtask deploy before do_build after do_compile