summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authormaximilian attems <maks@debian.org>2010-06-16 17:29:11 +0200
committermaximilian attems <maks@debian.org>2010-06-16 17:29:11 +0200
commitb1f74e697820d878a15e430e4ce1b74cd7fad2d3 (patch)
tree534512ff867e7513d99f70ebee857284489a394c /scripts
parent3054e3ed58dee5a70bcd462c71573d380f03bd7a (diff)
downloadinitramfs-tools-b1f74e697820d878a15e430e4ce1b74cd7fad2d3.tar.gz
initramfs-tools-b1f74e697820d878a15e430e4ce1b74cd7fad2d3.zip
get_fstype: reference blkid in comment
the removal of vol_id compat code as requested in #585419 is to early as we need it for Lenny upgrades. Nevertheless have the comment point to the newer tool. :) Thanks: Christoph Anton Mitterer <calestyo@scientia.net> Signed-off-by: maximilian attems <maks@debian.org>
Diffstat (limited to 'scripts')
-rw-r--r--scripts/functions2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/functions b/scripts/functions
index 641e678..de8c1b2 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -288,7 +288,7 @@ get_fstype ()
local FS FSTYPE FSSIZE RET
FS="${1}"
- # vol_id has a more complete list of file systems,
+ # blkid has a more complete list of file systems,
# but fstype is more robust
eval $(fstype "${FS}" 2> /dev/null)
if [ "$FSTYPE" = "unknown" ] && command -v blkid >/dev/null 2>&1 ; then