use system-wide mtd-utils, not the ancient 32bit binaries included in here

The uniprog script calls mkfs.jffs2 to build the datafs filesytem.  It
uses a pre-compiled i386 build of mkfs.jffs2.  Let's instead rely on the
current mtd-utils package of the host operating system instead.

Among other things, this avoids having to install a 32bit libz and
liblzo.
This commit is contained in:
Harald Welte 2022-12-12 13:57:05 +01:00 committed by Harald Welte
parent 1513cd183b
commit 0a0e0caac8
2 changed files with 4 additions and 4 deletions

View File

@ -3,8 +3,8 @@
# All rights reserved.
MKJFFS2="../mtd-utils/mkfs.jffs2"
SUMTOOL="../mtd-utils/sumtool"
MKJFFS2="/usr/sbin/mkfs.jffs2"
SUMTOOL="/usr/sbin/sumtool"
DD="/bin/dd"
FILESIZE="stat -c %s"
NO_RECOVERY=0

View File

@ -3,8 +3,8 @@
# All rights reserved.
MKJFFS2="../mtd-utils/mkfs.jffs2"
SUMTOOL="../mtd-utils/sumtool"
MKJFFS2="/usr/sbin/mkfs.jffs2"
SUMTOOL="/usr/sbin/sumtool"
DD="/bin/dd"
FILESIZE="stat -c %s"
NO_RECOVERY=0