diskdev_cmds: drop package

Signed-off-by: Ian Leonard <antonlacon@gmail.com>
This commit is contained in:
Ian Leonard 2023-03-19 18:58:39 +00:00
parent 507976d08d
commit 73c2d5d023
6 changed files with 0 additions and 2752 deletions

View File

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

View File

@ -216,9 +216,6 @@
# This adds support for parted and mkfs.ext3/4 to initramfs for OEM usage # This adds support for parted and mkfs.ext3/4 to initramfs for OEM usage
INITRAMFS_PARTED_SUPPORT="no" INITRAMFS_PARTED_SUPPORT="no"
# build and install hfs filesystem utilities (yes / no)
HFSTOOLS="no"
# build and install nano text editor (yes / no) # build and install nano text editor (yes / no)
NANO_EDITOR="yes" 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 # Automounter support
[ "${UDEVIL}" = "yes" ] && PKG_DEPENDS_TARGET+=" udevil" [ "${UDEVIL}" = "yes" ] && PKG_DEPENDS_TARGET+=" udevil"
# HFS filesystem tools
[ "${HFSTOOLS}" = "yes" ] && PKG_DEPENDS_TARGET+=" diskdev_cmds"
# Remote support # Remote support
[ "${REMOTE_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" remote" [ "${REMOTE_SUPPORT}" = "yes" ] && PKG_DEPENDS_TARGET+=" remote"

View File

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