summaryrefslogtreecommitdiffstats
path: root/installclasses/laptop.py
blob: 3530882dc9a54586d6467efd14c56c785b0786ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import workstation
from rhpl.translate import N_
import os
import pcmcia

class InstallClass(workstation.InstallClass):
    name = N_("Laptop")
    pixmap = "laptop-class.png"
    description = N_("Similar to 'Workstation' option, with laptop support.")
    
    sortPriority = 5000
    arch = 'i386'

    def setGroupSelection(self, comps):
	workstation.InstallClass.setGroupSelection(self, comps)

    if pcmcia.pcicType():
	default = 1

    def __init__(self, expert):
	workstation.InstallClass.__init__(self, expert)