New Addon: gptfdisk 1.0.8

>>> https://www.rodsbooks.com/gdisk/ <<<

source = https://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.8/gptfdisk-1.0.8.tar.gz/download

Hi @ all

I have a new add-on here which I use e.g. to bring partitions from mbr to gpt without data loss.
It is also well suited for rescuing broken partitions.

GPT fdisk (consisting of the gdisk, cgdisk, sgdisk, and fixparts programs) is a set of text-mode partitioning tools for Linux,
FreeBSD, Mac OS X, and Windows.
The gdisk, cgdisk, and sgdisk programs work on Globally Unique Identifier (GUID) Partition Table (GPT) disks,
rather than on the older (and once more common) Master Boot Record (MBR) partition tables.
The fixparts program repairs certain types of damage to MBR disks and enables changing partition types from
primary to logical and vice-versa.

Signed-off-by: Marcel Follert (Smooky) <smooky@v16.de>
Reviewed-by: Adolf Belka <adolf.belka@ipfire.org>
This commit is contained in:
smooky@v16.de
2022-01-09 13:09:20 +01:00
committed by Peter Müller
parent d0353b73c7
commit 2f8ae1c282
3 changed files with 96 additions and 7 deletions

14
make.sh
View File

@@ -1702,6 +1702,7 @@ buildipfire() {
lfsmake2 pmacct
lfsmake2 squid-asnbl
lfsmake2 qemu-ga
lfsmake2 gptfdisk
}
buildinstaller() {
@@ -1719,7 +1720,7 @@ buildpackages() {
export LOGFILE
echo "... see detailed log in _build.*.log files" >> $LOGFILE
# Generating list of packages used
print_line "Generating packages list from logs"
rm -f $BASEDIR/doc/packages-list
@@ -1734,7 +1735,7 @@ buildpackages() {
rm -f $BASEDIR/doc/packages-list
# packages-list.txt is ready to be displayed for wiki page
print_status DONE
# Update changelog
cd $BASEDIR
[ -z $GIT_TAG ] || LAST_TAG=$GIT_TAG
@@ -1806,7 +1807,7 @@ while [ $# -gt 0 ]; do
done
# See what we're supposed to do
case "$1" in
case "$1" in
build)
START_TIME=$(now)
@@ -1845,7 +1846,7 @@ build)
print_build_stage "Building packages"
buildpackages
print_build_stage "Checking Logfiles for new Files"
cd $BASEDIR
@@ -1910,7 +1911,7 @@ downloadsrc)
FINISHED=0
cd $BASEDIR/lfs
for c in `seq $MAX_RETRIES`; do
if (( FINISHED==1 )); then
if (( FINISHED==1 )); then
break
fi
FINISHED=1
@@ -2051,7 +2052,7 @@ find-dependencies)
;;
check-manualpages)
echo "Checking the manual pages for broken links..."
chmod 755 $BASEDIR/tools/check_manualpages.pl
if $BASEDIR/tools/check_manualpages.pl; then
print_status DONE
@@ -2064,4 +2065,3 @@ check-manualpages)
cat doc/make.sh-usage
;;
esac