blob: b87a763981b2d02c0f6e604d418744bb2ecdf7b6 (
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
|
DESCRIPTION = "U-boot bootloader mxsboot tool"
LICENSE = "GPLv2+"
LIC_FILES_CHKSUM = "file://Licenses/README;md5=6bc50ecab884fce80cd3ef3da8852b08"
SECTION = "bootloader"
PROVIDES = "u-boot-mxsboot"
PV = "v2013.10"
SRCREV = "fb18fa95a14ae875ef0a5421cd9fecc00c7c3a4c"
SRC_URI = "git://github.com/Freescale/u-boot-imx.git"
S = "${WORKDIR}/git"
EXTRA_OEMAKE = 'HOSTCC="${CC}" HOSTLD="${LD}" HOSTSTRIP=true CONFIG_MX28=y'
do_compile () {
oe_runmake tools
}
do_install () {
install -d ${D}${bindir}
install -m 0755 tools/mxsboot ${D}${bindir}/uboot-mxsboot
ln -sf uboot-mxsboot ${D}${bindir}/mxsboot
}
BBCLASSEXTEND = "native nativesdk"
|