ia64/xen-unstable
annotate tools/security/xensec_gen.py @ 8740:3d7ea7972b39
Update patches for linux 2.6.15.
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
Signed-off-by: Christian Limpach <Christian.Limpach@cl.cam.ac.uk>
author | cl349@firebug.cl.cam.ac.uk |
---|---|
date | Thu Feb 02 17:16:00 2006 +0000 (2006-02-02) |
parents | 269abc1e4fa5 |
children | 0e24e9674ded |
rev | line source |
---|---|
kaf24@8341 | 1 #!/usr/bin/python |
kaf24@8341 | 2 # |
kaf24@8341 | 3 # This program is free software; you can redistribute it and/or modify |
kaf24@8341 | 4 # it under the terms of the GNU General Public License as published by |
kaf24@8341 | 5 # the Free Software Foundation; either version 2 of the License, |
kaf24@8341 | 6 # or (at your option) any later version. |
kaf24@8341 | 7 # |
kaf24@8341 | 8 # This program is distributed in the hope that it will be useful, |
kaf24@8341 | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
kaf24@8341 | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
kaf24@8341 | 11 # GNU General Public License for more details. |
kaf24@8341 | 12 # |
kaf24@8341 | 13 # You should have received a copy of the GNU General Public License |
kaf24@8341 | 14 # along with this program; if not, write to the Free Software |
kaf24@8341 | 15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
kaf24@8341 | 16 # |
kaf24@8341 | 17 |
kaf24@8341 | 18 import sys |
kaf24@8341 | 19 |
kaf24@8341 | 20 # Add fallback path for non-native python path installs if needed |
kaf24@8341 | 21 sys.path.append( '/usr/lib/python' ) |
kaf24@8341 | 22 sys.path.append( '/usr/lib64/python' ) |
kaf24@8341 | 23 |
kaf24@8341 | 24 from xen.xensec_gen import main |
kaf24@8341 | 25 |
kaf24@8341 | 26 main.main( ) |