From a6343722d119f997cf87d3bca565cb419cea546f Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 7 Mar 2012 12:14:57 -0600 Subject: [PATCH] Add message about set_sys_init_* needed in BSP linkcmds. --- TODO | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/TODO b/TODO index 268c22c3..f5889290 100644 --- a/TODO +++ b/TODO @@ -6,3 +6,14 @@ - Fix line with "install for loop" wraps - Do include include target.cfg ++ Add the following (or similar) to the linkcmds any BSP used for testing: + + /* sysinit section? */ + . = ALIGN (16); + _bsd__start_set_sysinit_set = .; + *(set_sys_init_*); + _bsd__stop_set_sysinit_set = .; + + It is unclear what to do about the older sysctl sections or how to ensure + these are initialized. +