Merge remote-tracking branch 'origin/master' into isa/arm64
[lunaix-os.git] / lunaix-os / hal / ahci / LConfig
1
2 @Collection("AHCI")
3 def sata_ahci():
4
5     add_to_collection(hal)
6
7     @Term("Enable AHCI support")
8     def ahci_enable():
9         """ Enable the support of SATA AHCI. 
10             Must require PCI at current stage """
11         
12         type(bool)
13         default(True)
14
15         if not v(pci_enable):
16             set_value(False)
17
18