Can I download the build files for the Manajro Kernel to see it's settings?

I need to use AMD RAID and need to compile the controller. As for the setup, I need to blacklist AHCI but that won’t work if it is built-in. So I need to check if it is compiled that way and change it to module.

You can check here


If you want to try for linux58, then you go here, but you will see that was already marked as EOL …

You clone it, change the patches you want to apply in the config.x86_64 (something like that), update checksum, compile it then install it …
1 Like

@bogdancovaciu

On this file

reads as:

#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=y
CONFIG_SATA_MOBILE_LPM_POLICY=3
CONFIG_SATA_AHCI_PLATFORM=m
CONFIG_AHCI_CEVA=m
CONFIG_AHCI_QORIQ=m
CONFIG_SATA_INIC162X=m
CONFIG_SATA_ACARD_AHCI=m
CONFIG_SATA_SIL24=m
CONFIG_ATA_SFF=y

Change it to

#
# Controllers with non-SFF native interface
#
CONFIG_SATA_AHCI=m <-------- Here
CONFIG_SATA_MOBILE_LPM_POLICY=3
CONFIG_SATA_AHCI_PLATFORM=m
CONFIG_AHCI_CEVA=m
CONFIG_AHCI_QORIQ=m
CONFIG_SATA_INIC162X=m
CONFIG_SATA_ACARD_AHCI=m
CONFIG_SATA_SIL24=m
CONFIG_ATA_SFF=y
1 Like

So now the only thing you need to test is the compilation and functionality … right ? :slight_smile:

Yeah, I just need to install and follow the guide. It uses DKMs as I remember. I also would need to lock the kernel and compile each kernel.

Does Gitlab offer cloud compiling? I wonder I could get the Kernel compiled and published so I just have to get it during install. Not for free ofc

Another idea is check if Arch builds have AHCI as module

I think they do offer such service, but i have 0 experience with it.

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.