Merge pull request #7641 from antonlacon/hfstools

distro: don't include hfstools in image
This commit is contained in:
CvH 2023-03-20 12:03:51 +01:00 committed by GitHub
commit a446844119
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 0 additions and 2752 deletions

View File

@ -71,7 +71,6 @@ show_config() {
if [ "${SWAP_SUPPORT}" = "yes" ]; then
config_message+="\n - Swapfile default size:\t\t ${SWAPFILESIZE}"
fi
config_message+="\n - Install HFS Tools:\t\t\t ${HFSTOOLS}"
# Network service configuration

View File

@ -216,9 +216,6 @@
# This adds support for parted and mkfs.ext3/4 to initramfs for OEM usage
INITRAMFS_PARTED_SUPPORT="no"
# build and install hfs filesystem utilities (yes / no)
HFSTOOLS="yes"
# build and install nano text editor (yes / no)
NANO_EDITOR="yes"

View File

@ -1,29 +0,0 @@
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME="diskdev_cmds"
PKG_VERSION="332.14"
PKG_SHA256="a46bec392661a02d9683355baf4442d494e2bcde0ffb094aacc1e57ddc03b3d4"
PKG_LICENSE="APSL"
PKG_SITE="http://src.gnu-darwin.org/DarwinSourceArchive/expanded/diskdev_cmds/"
PKG_URL="http://www.opensource.apple.com/tarballs/diskdev_cmds/${PKG_NAME}-${PKG_VERSION}.tar.gz"
PKG_DEPENDS_TARGET="toolchain openssl"
PKG_LONGDESC="The fsck and mkfs utliities for hfs and hfsplus filesystems."
pre_make_target() {
PKG_MAKE_OPTS_TARGET="-f Makefile.lnx CC=${CC}"
export CFLAGS="${TARGET_CFLAGS} -g3 -Wall -I${PKG_BUILD}/include -DDEBUG_BUILD=0 -D_FILE_OFFSET_BITS=64 -D LINUX=1 -D BSD=1"
}
makeinstall_target() {
mkdir -p ${INSTALL}/usr/sbin
cp fsck_hfs.tproj/fsck_hfs ${INSTALL}/usr/sbin
ln -sf fsck_hfs ${INSTALL}/usr/sbin/fsck.hfs
ln -sf fsck_hfs ${INSTALL}/usr/sbin/fsck.hfsplus
}
make_init() {
: # we reuse make_target()
}

View File

@ -28,9 +28,6 @@ fi
# Automounter support
[ "${UDEVIL}" = "yes" ] && PKG_DEPENDS_TARGET+=" udevil"
# HFS filesystem tools
[ "${HFSTOOLS}" = "yes" ] && PKG_DEPENDS_TARGET+=" diskdev_cmds"
# Remote support
[ "${REMOTE_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" remote"

View File

@ -99,9 +99,6 @@
# build and install diskmounter support (udevil)
UDEVIL="no"
# build and install hfs filesystem utilities (yes / no)
HFSTOOLS="no"
# Xorg Graphic drivers to use (all / r300,r600,nvidia)
GRAPHIC_DRIVERS="mesa"