summaryrefslogtreecommitdiff
path: root/poky/scripts/lib/wic/ksparser.py
diff options
context:
space:
mode:
Diffstat (limited to 'poky/scripts/lib/wic/ksparser.py')
-rw-r--r--poky/scripts/lib/wic/ksparser.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/poky/scripts/lib/wic/ksparser.py b/poky/scripts/lib/wic/ksparser.py
index 3eb669da3..913e3283d 100644
--- a/poky/scripts/lib/wic/ksparser.py
+++ b/poky/scripts/lib/wic/ksparser.py
@@ -229,23 +229,6 @@ class KickStart():
err = "%s:%d: SquashFS does not support LABEL" \
% (confpath, lineno)
raise KickStartError(err)
- if parsed.fstype == 'msdos' or parsed.fstype == 'vfat':
- if parsed.fsuuid:
- if parsed.fsuuid.upper().startswith('0X'):
- if len(parsed.fsuuid) > 10:
- err = "%s:%d: fsuuid %s given in wks kickstart file " \
- "exceeds the length limit for %s filesystem. " \
- "It should be in the form of a 32 bit hexadecimal" \
- "number (for example, 0xABCD1234)." \
- % (confpath, lineno, parsed.fsuuid, parsed.fstype)
- raise KickStartError(err)
- elif len(parsed.fsuuid) > 8:
- err = "%s:%d: fsuuid %s given in wks kickstart file " \
- "exceeds the length limit for %s filesystem. " \
- "It should be in the form of a 32 bit hexadecimal" \
- "number (for example, 0xABCD1234)." \
- % (confpath, lineno, parsed.fsuuid, parsed.fstype)
- raise KickStartError(err)
if parsed.use_label and not parsed.label:
err = "%s:%d: Must set the label with --label" \
% (confpath, lineno)