diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/cfgfs/Makefile | 4 | ||||
-rw-r--r-- | package/cfgfs/src/fwcf.sh | 11 | ||||
-rw-r--r-- | package/gptfdisk/Makefile | 4 |
3 files changed, 14 insertions, 5 deletions
diff --git a/package/cfgfs/Makefile b/package/cfgfs/Makefile index addec9a7f..9fa6e571f 100644 --- a/package/cfgfs/Makefile +++ b/package/cfgfs/Makefile @@ -4,8 +4,8 @@ include ${ADK_TOPDIR}/rules.mk PKG_NAME:= cfgfs -PKG_VERSION:= 1.0.10 -PKG_RELEASE:= 4 +PKG_VERSION:= 1.0.11 +PKG_RELEASE:= 1 PKG_DESCR:= compressed config filesystem PKG_SECTION:= base/adk PKG_URL:= http://www.openadk.org/ diff --git a/package/cfgfs/src/fwcf.sh b/package/cfgfs/src/fwcf.sh index 0d572595a..70d0fa5c0 100644 --- a/package/cfgfs/src/fwcf.sh +++ b/package/cfgfs/src/fwcf.sh @@ -1,7 +1,7 @@ #!/bin/sh # Copyright (c) 2006-2007 # Thorsten Glaser <tg@mirbsd.de> -# Copyright (c) 2009-2017 +# Copyright (c) 2009-2023 # Waldemar Brodkorb <wbx@openadk.org> # # Provided that these terms and disclaimer and all copyright notices @@ -43,7 +43,7 @@ export PATH=/bin:/sbin:/usr/bin:/usr/sbin wd=$(pwd) cd / -what='Configuration Filesystem Utility (cfgfs), Version 1.10' +what='Configuration Filesystem Utility (cfgfs), Version 1.11' who=$(id -u) if [ $who -ne 0 ]; then @@ -140,6 +140,13 @@ if [ -f .cfgfs ]; then fi if [ -z $part ]; then part=$(fdisk -l /dev/sda 2>/dev/null|awk '{if ($2=="*") { print $1" "$9} else {print $1" "$8}}'|grep '^/dev.*88.*'|tail -1|awk '{ print $1 }') + # find GPT partition + if [ -z $part ]; then + partnum=$(gdisk -l /dev/sda 2>/dev/null|fgrep "cfgfs"|awk '{ print $1 }') + if [ ! -z $partnum ]; then + part=/dev/sda${partnum} + fi + fi if [ -z $part ]; then # otherwise search for MTD device with name cfgfs part=/dev/mtd$(fgrep '"cfgfs"' /proc/mtd 2>/dev/null | sed 's/^mtd\([^:]*\):.*$/\1/')ro diff --git a/package/gptfdisk/Makefile b/package/gptfdisk/Makefile index bd01bc0ac..37d170761 100644 --- a/package/gptfdisk/Makefile +++ b/package/gptfdisk/Makefile @@ -9,8 +9,10 @@ PKG_RELEASE:= 1 PKG_HASH:= 864c8aee2efdda50346804d7e6230407d5f42a8ae754df70404dd8b2fdfaeac7 PKG_DESCR:= utilities to create gpt partition tables PKG_SECTION:= sys/fs -PKG_BUILDDEP:= util-linux popt +PKG_DEPENDS:= libncurses libuuid +PKG_BUILDDEP:= util-linux popt ncurses HOST_BUILDDEP:= util-linux-host popt-host +PKG_NEEDS:= c++ PKG_URL:= http://www.rodsbooks.com/gdisk/ PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=gptfdisk/} |