Changeset 571239a in mainline


Ignore:
Timestamp:
2012-11-16T15:36:29Z (11 years ago)
Author:
Martin Sucha <sucha14@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
20f8111
Parents:
9234566
Message:

When writing an auto-generated file, note which program generated it.

Location:
tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • tools/autotool.py

    r9234566 r571239a  
    563563        outmk.write('#########################################\n')
    564564        outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n')
     565        outmk.write('## Generated by: tools/autotool.py     ##\n')
    565566        outmk.write('#########################################\n\n')
    566567       
     
    580581        outhd.write('/***************************************\n')
    581582        outhd.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     583        outhd.write(' * Generated by: tools/autotool.py     *\n')
    582584        outhd.write(' ***************************************/\n\n')
    583585       
  • tools/config.py

    r9234566 r571239a  
    388388        outmk.write('#########################################\n')
    389389        outmk.write('## AUTO-GENERATED FILE, DO NOT EDIT!!! ##\n')
     390        outmk.write('## Generated by: tools/config.py       ##\n')
    390391        outmk.write('#########################################\n\n')
    391392       
    392393        outmc.write('/***************************************\n')
    393394        outmc.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     395        outmc.write(' * Generated by: tools/config.py       *\n')
    394396        outmc.write(' ***************************************/\n\n')
    395397       
  • tools/mkarray.py

    r9234566 r571239a  
    9595        header.write('/***************************************\n')
    9696        header.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     97        header.write(' * Generated by: tools/mkarray.py      *\n')
    9798        header.write(' ***************************************/\n\n')
    9899        header.write("#ifndef %s_H_\n" % label)
     
    109110        data.write('/***************************************\n')
    110111        data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     112        data.write(' * Generated by: tools/mkarray.py      *\n')
    111113        data.write(' ***************************************/\n\n')
    112114        data.write("#include \"%s.h\"\n\n" % dest)
  • tools/pack.py

    r9234566 r571239a  
    155155        header.write('/***************************************\n')
    156156        header.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     157        header.write(' * Generated by: tools/pack.py         *\n')
    157158        header.write(' ***************************************/\n\n')
    158159        header.write("#ifndef BOOT_COMPONENTS_H_\n")
     
    177178        data.write('/***************************************\n')
    178179        data.write(' * AUTO-GENERATED FILE, DO NOT EDIT!!! *\n')
     180        data.write(' * Generated by: tools/pack.py         *\n')
    179181        data.write(' ***************************************/\n\n')
    180182        data.write("#include <typedefs.h>\n")
Note: See TracChangeset for help on using the changeset viewer.