This is an automated email from the ASF dual-hosted git repository. acassis pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git
commit d8ead1a0f3d81cfb253b6fa774c8ad0a7e394253 Author: Alan Carvalho de Assis <[email protected]> AuthorDate: Wed May 27 09:42:14 2026 -0300 system/nxinit: Remove deprecated BOARDIOC_INIT ioctl Since boardctl(BOARDIOC_INIT, 0) was removed from all boards, it is not right to use it here. Signed-off-by: Alan C. Assis <[email protected]> --- system/nxinit/init.c | 1 - 1 file changed, 1 deletion(-) diff --git a/system/nxinit/init.c b/system/nxinit/init.c index a1482f693..e7824a419 100644 --- a/system/nxinit/init.c +++ b/system/nxinit/init.c @@ -191,7 +191,6 @@ int main(int argc, FAR char *argv[]) init_action_add_event(&am, "boot"); - boardctl(BOARDIOC_INIT, 0); init_action_add_event(&am, "init"); #ifdef CONFIG_NETUTILS_NETINIT
