initial import code into git
[platform/upstream/mic.git] / micng / utils / kscommands / micboot.py
1 #!/usr/bin/python -tt
2 #
3 # Anas Nashif
4 #
5 # Copyright 2008, 2009, 2010 Intel, Inc.
6 #
7 # This copyrighted material is made available to anyone wishing to use, modify,
8 # copy, or redistribute it subject to the terms and conditions of the GNU
9 # General Public License v.2.  This program is distributed in the hope that it
10 # will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
11 # implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12 # See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # this program; if not, write to the Free Software Foundation, Inc., 51
16 # Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  Any Red Hat
17 # trademarks that are incorporated in the source code or documentation are not
18 # subject to the GNU General Public License and may only be used or replicated
19 # with the express permission of Red Hat, Inc.
20 #
21 from pykickstart.base import *
22 from pykickstart.errors import *
23 from pykickstart.options import *
24 from pykickstart.commands.bootloader import *
25 class Moblin_Bootloader(F8_Bootloader):
26     def __init__(self, writePriority=10, appendLine="", driveorder=None,
27                  forceLBA=False, location="", md5pass="", password="",
28                  upgrade=False, menus=""):
29         F8_Bootloader.__init__(self, writePriority, appendLine, driveorder,
30                                 forceLBA, location, md5pass, password, upgrade)
31
32         self.menus = ""
33
34     def _getArgsAsStr(self):
35         ret = F8_Bootloader._getArgsAsStr(self)
36
37         if self.menus == "":
38             ret += " --menus=%s" %(self.menus,)
39         return ret
40
41     def _getParser(self):
42         op = F8_Bootloader._getParser(self)
43         op.add_option("--menus", dest="menus")
44         return op
45