mirror of
https://git.yoctoproject.org/poky
synced 2026-02-09 18:23:02 +01:00
Upgrade to 1.43 (master) to make "mke2fs -d" support xattr, so that the
layer which requires xattr such as meta-selinux can populate images
easily.
* Remove the following patches since they are alredy in the source.
0001-e2fsprogs-fix-cross-compilation-problem.patch
0001-libext2fs-fix-potential-buffer-overflow-in-closefs.patch
0001-mke2fs-add-the-ability-to-copy-files-from-a-given-di.patch
0002-misc-create_inode.c-copy-files-recursively.patch
0003-misc-create_inode.c-create-special-file.patch
0004-misc-create_inode.c-create-symlink.patch
0005-misc-create_inode.c-copy-regular-file.patch
0006-misc-create_inode.c-create-directory.patch
0007-misc-create_inode.c-set-owner-mode-time-for-the-inod.patch
0008-mke2fs.c-add-an-option-d-root-directory.patch
0009-misc-create_inode.c-handle-hardlinks.patch
0010-debugfs-use-the-functions-in-misc-create_inode.c.patch
0011-mke2fs.8.in-update-the-manual-for-the-d-option.patch
0012-Fix-musl-build-failures.patch
CVE-2015-0247.patch
copy-in-create-hardlinks-with-the-correct-directory-.patch
fix-icache.patch
misc-mke2fs.c-return-error-when-failed-to-populate-fs.patch
* Remove cache_inode.patch since it is not needed any more
* Updated mkdir.patch and ptest.patch
* Add --enable-libblkid to EXTRA_OECONF since libblkid is not created by
default.
* Time of core-image-sato-sdk do_rootfs:
- Before upgrade
real 3m18.508s
user 7m42.088s
sys 1m1.984s
- After upgrade
real 3m21.552s
user 7m38.496s
sys 1m0.644s
The are nearly the same
* The "fsck -f" shows the image is OK, and also can boot.
[YOCTO #8622]
(From OE-Core rev: a1f235ad736d322bb50eb4a4293b6b2f4e5200aa)
Signed-off-by: Robert Yang <liezhi.yang@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
28 lines
1.4 KiB
PHP
28 lines
1.4 KiB
PHP
SUMMARY = "Ext2 Filesystem Utilities"
|
|
DESCRIPTION = "The Ext2 Filesystem Utilities (e2fsprogs) contain all of the standard utilities for creating, \
|
|
fixing, configuring , and debugging ext2 filesystems."
|
|
HOMEPAGE = "http://e2fsprogs.sourceforge.net/"
|
|
|
|
LICENSE = "GPLv2 & LGPLv2 & BSD & MIT"
|
|
LICENSE_e2fsprogs-e2fsck = "GPLv2"
|
|
LICENSE_e2fsprogs-mke2fs = "GPLv2"
|
|
LICENSE_e2fsprogs-fsck = "GPLv2"
|
|
LICENSE_e2fsprogs-tune2fs = "GPLv2"
|
|
LICENSE_e2fsprogs-badblocks = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=b48f21d765b875bd10400975d12c1ca2 \
|
|
file://lib/ext2fs/ext2fs.h;beginline=1;endline=9;md5=596a8dedcb4e731c6b21c7a46fba6bef \
|
|
file://lib/e2p/e2p.h;beginline=1;endline=7;md5=8a74ade8f9d65095d70ef2d4bf48e36a \
|
|
file://lib/uuid/uuid.h.in;beginline=1;endline=32;md5=dbb8079e114a5f841934b99e59c8820a \
|
|
file://lib/uuid/COPYING;md5=58dcd8452651fc8b07d1f65ce07ca8af \
|
|
file://lib/et/et_name.c;beginline=1;endline=11;md5=ead236447dac7b980dbc5b4804d8c836 \
|
|
file://lib/ss/ss.h;beginline=1;endline=20;md5=6e89ad47da6e75fecd2b5e0e81e1d4a6"
|
|
SECTION = "base"
|
|
DEPENDS = "util-linux"
|
|
|
|
SRC_URI = "git://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git"
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit autotools gettext texinfo pkgconfig multilib_header update-alternatives ptest
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|