31277f26165d9a4baa068197f9ca278fcb5e1947
[lunaix-os.git] / lunaix-os / hal / ahci / LConfig
1
2 @"AHCI"
3 @(parent := hal)
4 def sata_ahci():
5
6     @"Enable AHCI support"
7     def ahci_enable() -> bool:
8         """ Enable the support of SATA AHCI. 
9             Must require PCI at current stage """
10         require(pci_enable)
11         
12         return True
13
14