From 2cefcef63d6e99cba57bf7b5aa72d1d8b025d5ae Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Fri, 28 Jun 2024 15:08:53 +0200 Subject: [PATCH] Make busybox static Now the problem is inside the busybox binary: [ 43.028000] Run /init as init process [ 43.033300] with arguments: [ 43.037260] /init [ 43.040000] with environment: [ 43.044180] HOME=/ [ 43.047600] TERM=linux [ 43.078020] init[1]: unhandled signal 4 code 0x1 at 0x0000000000010660 in busybox[10000+22d000] [ 43.090080] CPU: 0 PID: 1 Comm: init Not tainted 6.1.62 #1-NixOS [ 43.097580] Hardware name: Barcelona Supercomputing Center - Lagarto Ox (NixOS) (DT) [ 43.106480] epc : 0000000000010660 ra : 0000000000000000 sp : 0000003fd5489db0 [ 43.114780] gp : ffffffff8197ea48 tp : 0000000000000000 t0 : 0000000000000000 [ 43.123080] t1 : 0000000000000000 t2 : 0000000000000000 s0 : 0000000000000000 [ 43.131340] s1 : 0000000000000000 a0 : 0000000000000000 a1 : 0000000000000000 [ 43.139620] a2 : 0000000000000000 a3 : 0000000000000000 a4 : 0000000000000000 [ 43.147900] a5 : 0000000000000000 a6 : 0000000000000000 a7 : 0000000000000000 [ 43.156180] s2 : 0000000000000000 s3 : 0000000000000000 s4 : 0000000000000000 [ 43.164860] s5 : 0000000000000000 s6 : 0000000000000000 s7 : 0000000000000000 [ 43.173140] s8 : 0000000000000000 s9 : 0000000000000000 s10: 0000000000000000 [ 43.181420] s11: 0000000000000000 t3 : 0000000000000000 t4 : 0000000000000000 [ 43.189680] t5 : 0000000000000000 t6 : 0000000000000000 [ 43.196040] status: 0000000200004020 badaddr: 00000000034000ef cause: 0000000000000002 [ 43.208240] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000004 [ 43.216340] CPU: 0 PID: 1 Comm: init Not tainted 6.1.62 #1-NixOS [ 43.222940] Hardware name: Barcelona Supercomputing Center - Lagarto Ox (NixOS) (DT) [ 43.231100] Call Trace: [ 43.234000] [] dump_backtrace+0x38/0x48 [ 43.240140] [] show_stack+0x50/0x68 [ 43.245900] [] dump_stack_lvl+0x60/0x84 [ 43.252000] [] dump_stack+0x20/0x30 [ 43.257740] [] panic+0x160/0x390 [ 43.263200] [] do_exit+0xa70/0xa78 [ 43.268820] [] do_group_exit+0x44/0xb0 [ 43.274780] [] get_signal+0x9b4/0xa00 [ 43.280700] [] do_work_pending+0x18c/0x610 [ 43.287020] [] resume_userspace_slow+0x10/0x14 [ 43.293960] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00000004 ]--- --- lagarto-ox.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lagarto-ox.nix b/lagarto-ox.nix index 27f06c9..6d853d2 100644 --- a/lagarto-ox.nix +++ b/lagarto-ox.nix @@ -86,6 +86,9 @@ }; nixpkgs.overlays = [ (final: prev: { + busybox = prev.busybox.override { + enableStatic = true; + }; ox-dtb = prev.runCommand "ox.dtb" { dtsFile = ./ox-plic.dts; #dtsFile = ./xavi.dts;