genini.py revision 1320
1#!/usr/bin/env python
2# Copyright (c) 2005 The Regents of The University of Michigan
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;
9# redistributions in binary form must reproduce the above copyright
10# notice, this list of conditions and the following disclaimer in the
11# documentation and/or other materials provided with the distribution;
12# neither the name of the copyright holders nor the names of its
13# contributors may be used to endorse or promote products derived from
14# this software without specific prior written permission.
15#
16# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
28import getopt, os, os.path, sys
29
30sys.path.append('..')
31sys.path.append('../configs/kernel')
32sys.path.append('../sim/pyconfig')
33
34from importer import mpy_exec, AddToPath
35from m5config import *
36
37try:
38    opts, args = getopt.getopt(sys.argv[1:], '-E:')
39    for o,a in opts:
40        if o == '-E':
41            offset = a.find('=')
42            if offset == -1:
43                name = a
44                value = True
45            else:
46                name = a[:offset]
47                value = a[offset+1:]
48            env[name] = value
49except getopt.GetoptError:
50    sys.exit('Improper Usage')
51
52for arg in args:
53    AddToPath(os.path.dirname(arg))
54    mpy_exec(file(arg, 'r'), globals())
55
56if globals().has_key('root') and isinstance(root, type) \
57       and issubclass(root, Root):
58    instantiate(root)
59