Changeset 694ca93f in mainline for tools/mkfat.py


Ignore:
Timestamp:
2011-05-01T19:34:26Z (13 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
0e26444
Parents:
1ff896e (diff), 042fbe0 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • tools/mkfat.py

    r1ff896e r694ca93f  
    190190        parts = name.split('.')
    191191       
    192         if (len(parts) > 0):
     192        if len(parts) > 0:
    193193                fname = parts[0]
    194194        else:
    195195                fname = ''
    196                
     196       
     197        if len(fname) > 8:
     198                sys.stdout.write("mkfat.py: error: Directory entry " + name +
     199                    " base name is longer than 8 characters\n")
     200                sys.exit(1);
     201       
    197202        return (fname + '          ').upper()[0:8]
    198203
     
    201206        parts = name.split('.')
    202207       
    203         if (len(parts) > 1):
     208        if len(parts) > 1:
    204209                ext = parts[1]
    205210        else:
    206211                ext = ''
     212       
     213        if len(parts) > 2:
     214                sys.stdout.write("mkfat.py: error: Directory entry " + name +
     215                    " has more than one extension\n")
     216                sys.exit(1);
     217       
     218        if len(ext) > 3:
     219                sys.stdout.write("mkfat.py: error: Directory entry " + name +
     220                    " extension is longer than 3 characters\n")
     221                sys.exit(1);
    207222       
    208223        return (ext + '   ').upper()[0:3]
Note: See TracChangeset for help on using the changeset viewer.