import FermiStandAlone
from translate import N_
import os
import pcmcia

class InstallClass(FermiStandAlone.InstallClass):
    name = N_("Laptop Install")
    pixmap = "laptop-class.png"

    sortPriority = 5000
    arch = 'i386'

    def setGroupSelection(self, comps):
	FermiStandAlone.InstallClass.setGroupSelection(self, comps)
	comps["Laptop Support"].select()

    if pcmcia.pcicType():
	default = 1

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