blob: 75ff7b9bb2d7d1c2aa47af019559ce1c3772519f (
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 += "util-linux-ng"
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 \
file://fix-ignoreerrors-git.patch \
file://lzo_1x-git.patch"
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
}
|