From 8877b9ccd0daed8f4003bb3de463f4d8e2805c9b Mon Sep 17 00:00:00 2001 From: Simon Kuenzer Date: Thu, 6 May 2021 15:02:35 +0200 Subject: [PATCH] lib/uksched: Remove unnecessary alignment for thread inittab The align parameter within `extra.ld` for the `uk_thread_inttab` was causing some alignment issues for the `text` section. Some builds were not able to be executed. It turns out that this extra alignment statement is not needed for the table. Signed-off-by: Simon Kuenzer Reviewed-by: Razvan Deaconescu Tested-by: Unikraft CI GitHub-Pull-Request: #201 --- lib/uksched/extra.ld | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/uksched/extra.ld b/lib/uksched/extra.ld index ba659d266..21736bb5c 100644 --- a/lib/uksched/extra.ld +++ b/lib/uksched/extra.ld @@ -1,7 +1,6 @@ SECTIONS { .uk_thread_inittab : { - . = ALIGN(0x8); PROVIDE(_uk_thread_inittab_start = .); KEEP (*(.uk_thread_inittab0)) KEEP (*(.uk_thread_inittab0.*)) -- 2.39.5