diff options
author | imp <imp@FreeBSD.org> | 2010-10-28 06:45:20 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2010-10-28 06:45:20 +0000 |
commit | 745b9bbae79812c4430c3448a839743977e3eb97 (patch) | |
tree | 7d8e12ed1b672764bb4c7e88fa0f0bc91f7623ac | |
parent | 14b10376c410b367b545086dc76ba72384cec6ee (diff) | |
download | FreeBSD-src-745b9bbae79812c4430c3448a839743977e3eb97.zip FreeBSD-src-745b9bbae79812c4430c3448a839743977e3eb97.tar.gz |
Turns out we need functions.sh in this file for convert_to_megabytes call.
-rwxr-xr-x | usr.sbin/pc-sysinstall/backend-query/disk-info.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/pc-sysinstall/backend-query/disk-info.sh b/usr.sbin/pc-sysinstall/backend-query/disk-info.sh index 8c55fce..adaeaa5 100755 --- a/usr.sbin/pc-sysinstall/backend-query/disk-info.sh +++ b/usr.sbin/pc-sysinstall/backend-query/disk-info.sh @@ -28,6 +28,7 @@ # Query a disk for partitions and display them ############################################################################# +. ${PROGDIR}/backend/functions.sh . ${PROGDIR}/backend/functions-disk.sh DISK="${1}" @@ -57,4 +58,3 @@ echo "heads=${HEADS}" echo "sectors=${SECS}" echo "size=${MB}" echo "type=${CTYPE}" - |