feat: rank drivers at compile time

This commit is contained in:
2021-03-07 20:30:07 +01:00
parent f6e720bad9
commit 945b18b2b2
11 changed files with 1254 additions and 62 deletions

View File

@@ -32,11 +32,11 @@ SECTIONS
*(.data)
. = ALIGN(16);
__start_pci_driver = .;
*(pci_driver)
*(SORT(.pci_driver.*))
__stop_pci_driver = .;
. = ALIGN(16);
__start_block_dev_driver = .;
*(block_dev_driver)
*(SORT(.block_dev_driver.*))
__stop_block_dev_driver = .;
}