blob: 4b6a20d1bafb8ba8334f18a244c16e057fa4bb26 (
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
|
require u-boot.inc
PR = "r6"
ALLOW_EMPTY = 1
SRC_URI = "ftp://ftp.denx.de/pub/u-boot/u-boot-${PV}.tar.bz2"
SRC_URI_append_mtcdp = "\
file://u-boot-${PV}-mts.patch;patch=1 \
file://fw_env.config \
"
TARGET_LDFLAGS = ""
inherit base
FILES_${PN} = " \
${base_sbindir}/fw_setenv \
${base_sbindir}/fw_printenv \
"
FILES_${PN}_append_mtcdp = "${sysconfdir}/fw_env.config"
# Don't override install if you want to install any of the U-Boot tools
do_install () {
echo "nothing to install"
}
|