aboutsummaryrefslogtreecommitdiffstats
path: root/packages/uboot/uboot-utils_1.2.0.bb
blob: fe9b3aca26e3449adf970c422e88c1809cf04328 (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
DESCRIPTION = "U-boot bootloader OS env. access tools for PPC"
SECTION = "bootloaders"
PRIORITY = "optional"
LICENSE = "GPL"
PR = "r6"

SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2"

S = "${WORKDIR}/u-boot-${PV}"

do_configure() {
	:
}

do_compile () {
	oe_runmake Sandpoint8240_config
	oe_runmake tools
}

# install mkimage for the kernel makefile
do_stage() {
	install -d ${STAGING_BINDIR_NATIVE}
	install -m 755 ${S}/tools/mkimage ${STAGING_BINDIR_NATIVE}/
}