feat added init function

This commit is contained in:
2021-08-13 21:07:40 +02:00
parent 8187265735
commit 6b0f6ddfb7
5 changed files with 59 additions and 0 deletions

View File

@@ -31,6 +31,10 @@ SECTIONS
{
*(.data)
. = ALIGN(16);
__start_init = .;
*(SORT(.init.*))
__stop_init = .;
. = ALIGN(16);
__start_pci_driver = .;
*(SORT(.pci_driver.*))
__stop_pci_driver = .;