X-Git-Url: https://git.grml.org/?p=grml2usb.git;a=blobdiff_plain;f=grml2usb;fp=grml2usb;h=9a989e38ee5dc202e2b1fc79f5c7882a5a06ea02;hp=7e68b183936f496a18816f35a180e438edc6f1f5;hb=1dfee7dc5236d2eb6e93aca0f3d9a85c1a47ba39;hpb=6f3eb526aad869050f24159dc46e5d3bfe7cf952 diff --git a/grml2usb b/grml2usb index 7e68b18..9a989e3 100755 --- a/grml2usb +++ b/grml2usb @@ -520,7 +520,7 @@ def mkfs_fat16(device): logging.info("Formating partition with fat16 filesystem") logging.debug("mkfs.vfat -F 16 %s", device) - proc = subprocess.Popen(["mkfs.vfat", "-F", "16", device]) + proc = subprocess.Popen(["mkfs.vfat", "-n", "GRML", "-F", "16", device]) proc.wait() if proc.returncode != 0: raise CriticalException("error executing mkfs.vfat")