From 224ed7b13ceadd05d27e61d3a0fdd34beb0c7745 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 22 Nov 2024 16:43:36 +0100 Subject: Fix initrd parsing because of a path change MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In commit 573a8c6b490a ("usr: Rename foo/bar to fizz/buzz") the path of the user-space binaries have changed. The `initrd` parsing code makes some decisions based on that naming, and so it needed to be updated as well. Fixes: 573a8c6b490a ("usr: Rename foo/bar to fizz/buzz") Signed-off-by: Miquel Sabaté Solà --- include/fbos/sched.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include') diff --git a/include/fbos/sched.h b/include/fbos/sched.h index ff56f32..6a59756 100644 --- a/include/fbos/sched.h +++ b/include/fbos/sched.h @@ -6,9 +6,9 @@ enum task_id { TASK_UNKNOWN = -1, TASK_INIT = 0, - TASK_FOO = 1, - TASK_BAR = 2, - TASK_FOOBAR = 3, + TASK_FIZZ = 1, + TASK_BUZZ = 2, + TASK_FIZZBUZZ = 3, }; struct task_struct { -- cgit v1.2.3