aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/mtd/mtd-utils_1.3.1.bb
blob: ee7f96298f93d91de5a42874b348e82063d238ab (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
require mtd-utils.inc

DEPENDS += "e2fsprogs-libs"

PARALLEL_MAKE = ""
ARM_INSTRUCTION_SET = "arm"

# This is the default package, thus we lock to a specific git version so 
# upstream changes will not break builds.

TAG = "v${PV}"

SRC_URI = "git://git.infradead.org/mtd-utils.git;protocol=git;tag=${TAG} \
	   file://add-exclusion-to-mkfs-jffs2-git-2.patch;patch=1 \
	   file://fix-ignoreerrors-git.patch;patch=1 \
	   file://lzo_1x-git.patch;patch=1"

S = "${WORKDIR}/git/"

do_configure_prepend() {
	for i in $(find . -name "Makefile") ; do
		sed -i -e s:lzo2:lzo:g $i
	done
	if [ -e mkfs.ubifs/compr.c ]; then
		sed -i -e s:lzo/::g mkfs.ubifs/compr.c
	fi
}