# Description: Ignore volume labels which are '/' # Ubuntu: https://launchpad.net/bugs/83323 # UbuntuSpecific: automatic labelling from Ubiquity/d-i, earlier releases created those by default --- hal-0.5.8.1/tools/hal-storage-mount.c 2007-03-09 18:13:01.000000000 +0100 +++ hal-0.5.8.1/tools/hal-storage-mount.c 2007-03-09 18:19:42.000000000 +0100 @@ -591,7 +591,7 @@ else label = NULL; - if (label != NULL) { + if (label != NULL && strcmp(label, "/") != 0) { /* best - use label */ g_strlcpy (mount_point, label, sizeof (mount_point));