update readme on build system
[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