diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2015-04-29 00:46:18 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-07-20 20:53:07 +0100 |
commit | 1a3a7a1ba8c271acd13cb1d740ef83ee02829e33 (patch) | |
tree | 940f31d9225814e81159c1fb7627e02af552519c /meta | |
parent | 7643fe96bbce57995580162b5339674cc4a9c81f (diff) | |
download | openembedded-core-1a3a7a1ba8c271acd13cb1d740ef83ee02829e33.tar.gz openembedded-core-1a3a7a1ba8c271acd13cb1d740ef83ee02829e33.tar.bz2 openembedded-core-1a3a7a1ba8c271acd13cb1d740ef83ee02829e33.zip |
e2fsprogs: install populate-extfs.sh
* install populate-extfs.sh from contrib, be aware that in order
to use it you need to set DEBUGFS shell variable, otherwise it will
try to use debugfs from relative path which is almost always
incorrect:
CONTRIB_DIR=$(dirname $(readlink -f $0))
DEBUGFS="$CONTRIB_DIR/../debugfs/debugfs"
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb index 70ccdfd540..95c612cdc4 100644 --- a/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb +++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs_1.42.9.bb @@ -54,6 +54,8 @@ do_install () { oe_multilib_header ext2fs/ext2_types.h install -d ${D}${base_bindir} mv ${D}${bindir}/chattr ${D}${base_bindir}/chattr.e2fsprogs + + install -v -m 755 ${S}/contrib/populate-extfs.sh ${D}${base_sbindir}/ } do_install_append_class-target() { |