hfstools: move diskdev_cmds inclusion in image to virtual package

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
This commit is contained in:
Ian Leonard 2021-03-25 00:58:04 +00:00
parent b46797c6a1
commit 08c37b5795
2 changed files with 3 additions and 4 deletions

View File

@ -14,10 +14,6 @@ PKG_DEPENDS_INIT="toolchain"
PKG_LONGDESC="The filesystem utilities for the EXT2 filesystem, including e2fsck, mke2fs, dumpe2fs, fsck, and others."
PKG_BUILD_FLAGS="-parallel"
if [ "${HFSTOOLS}" = "yes" ]; then
PKG_DEPENDS_TARGET+=" diskdev_cmds"
fi
PKG_CONFIGURE_OPTS_HOST="--prefix=${TOOLCHAIN}/ \
--bindir=${TOOLCHAIN}/bin \
--with-udev-rules-dir=no \

View File

@ -20,6 +20,9 @@ PKG_LONGDESC="Root package used to build and create complete image"
# Automounter support
[ "${UDEVIL}" = "yes" ] && PKG_DEPENDS_TARGET+=" udevil"
# HFS filesystem tools
[ "${HFSTOOLS}" = "yes" ] && PKG_DEPENDS_TARGET+=" diskdev_cmds"
# NTFS 3G support
[ "${NTFS3G}" = "yes" ] && PKG_DEPENDS_TARGET+=" ntfs-3g_ntfsprogs"