From 729bea6838bcbcd3d308d9d32a7897c1dec8cf92 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Mon, 26 Apr 2021 10:06:03 +0000 Subject: [PATCH] Drop mtools We are no longer generating any floppy disk images. Signed-off-by: Michael Tremer --- config/rootfiles/common/mtools | 63 --------------------------- lfs/mtools | 78 ---------------------------------- 2 files changed, 141 deletions(-) delete mode 100644 config/rootfiles/common/mtools delete mode 100644 lfs/mtools diff --git a/config/rootfiles/common/mtools b/config/rootfiles/common/mtools deleted file mode 100644 index 014d99255b..0000000000 --- a/config/rootfiles/common/mtools +++ /dev/null @@ -1,63 +0,0 @@ -#usr/bin/amuFormat.sh -#usr/bin/lz -#usr/bin/mattrib -#usr/bin/mbadblocks -#usr/bin/mcat -#usr/bin/mcd -#usr/bin/mcheck -#usr/bin/mclasserase -#usr/bin/mcomp -#usr/bin/mcopy -#usr/bin/mdel -#usr/bin/mdeltree -#usr/bin/mdir -#usr/bin/mdu -#usr/bin/mformat -#usr/bin/minfo -#usr/bin/mkmanifest -#usr/bin/mlabel -#usr/bin/mmd -#usr/bin/mmount -#usr/bin/mmove -#usr/bin/mpartition -#usr/bin/mrd -#usr/bin/mren -#usr/bin/mshortname -#usr/bin/mshowfat -usr/bin/mtools -#usr/bin/mtoolstest -#usr/bin/mtype -#usr/bin/mxtar -#usr/bin/mzip -#usr/bin/tgz -#usr/bin/uz -#usr/share/info/mtools.info -#usr/share/man/man1/floppyd.1 -#usr/share/man/man1/floppyd_installtest.1 -#usr/share/man/man1/mattrib.1 -#usr/share/man/man1/mbadblocks.1 -#usr/share/man/man1/mcat.1 -#usr/share/man/man1/mcd.1 -#usr/share/man/man1/mclasserase.1 -#usr/share/man/man1/mcopy.1 -#usr/share/man/man1/mdel.1 -#usr/share/man/man1/mdeltree.1 -#usr/share/man/man1/mdir.1 -#usr/share/man/man1/mdu.1 -#usr/share/man/man1/mformat.1 -#usr/share/man/man1/minfo.1 -#usr/share/man/man1/mkmanifest.1 -#usr/share/man/man1/mlabel.1 -#usr/share/man/man1/mmd.1 -#usr/share/man/man1/mmount.1 -#usr/share/man/man1/mmove.1 -#usr/share/man/man1/mpartition.1 -#usr/share/man/man1/mrd.1 -#usr/share/man/man1/mren.1 -#usr/share/man/man1/mshortname.1 -#usr/share/man/man1/mshowfat.1 -#usr/share/man/man1/mtools.1 -#usr/share/man/man1/mtoolstest.1 -#usr/share/man/man1/mtype.1 -#usr/share/man/man1/mzip.1 -#usr/share/man/man5/mtools.5 diff --git a/lfs/mtools b/lfs/mtools deleted file mode 100644 index 3a5a35d1ef..0000000000 --- a/lfs/mtools +++ /dev/null @@ -1,78 +0,0 @@ -############################################################################### -# # -# IPFire.org - A linux based firewall # -# Copyright (C) 2007-2018 IPFire Team # -# # -# This program is free software: you can redistribute it and/or modify # -# it under the terms of the GNU General Public License as published by # -# the Free Software Foundation, either version 3 of the License, or # -# (at your option) any later version. # -# # -# This program is distributed in the hope that it will be useful, # -# but WITHOUT ANY WARRANTY; without even the implied warranty of # -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # -# GNU General Public License for more details. # -# # -# You should have received a copy of the GNU General Public License # -# along with this program. If not, see . # -# # -############################################################################### - -############################################################################### -# Definitions -############################################################################### - -include Config - -VER = 4.0.27 - -THISAPP = mtools-$(VER) -DL_FILE = $(THISAPP).tar.gz -DL_FROM = $(URL_IPFIRE) -DIR_APP = $(DIR_SRC)/$(THISAPP) -TARGET = $(DIR_INFO)/$(THISAPP) - -############################################################################### -# Top-level Rules -############################################################################### - -objects = $(DL_FILE) - -$(DL_FILE) = $(DL_FROM)/$(DL_FILE) - -$(DL_FILE)_MD5 = 5895493cc71bcdc03308bb564bd2061d - -install : $(TARGET) - -check : $(patsubst %,$(DIR_CHK)/%,$(objects)) - -download :$(patsubst %,$(DIR_DL)/%,$(objects)) - -md5 : $(subst %,%_MD5,$(objects)) - -############################################################################### -# Downloading, checking, md5sum -############################################################################### - -$(patsubst %,$(DIR_CHK)/%,$(objects)) : - @$(CHECK) - -$(patsubst %,$(DIR_DL)/%,$(objects)) : - @$(LOAD) - -$(subst %,%_MD5,$(objects)) : - @$(MD5) - -############################################################################### -# Installation Details -############################################################################### - -$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) - @$(PREBUILD) - @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE) - $(UPDATE_AUTOMAKE) - cd $(DIR_APP) && ./configure --prefix=/usr - cd $(DIR_APP) && make $(MAKETUNING) - cd $(DIR_APP) && make install - @rm -rf $(DIR_APP) - @$(POSTBUILD) -- 2.39.5