aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-22 16:43:36 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-22 16:43:36 +0100
commit224ed7b13ceadd05d27e61d3a0fdd34beb0c7745 (patch)
tree30048a428833610202f59df64b662b27a4e5483e /include
parent36a3989842bf813bd807a0be6ba6f6ebee684872 (diff)
downloadfbos-224ed7b13ceadd05d27e61d3a0fdd34beb0c7745.tar.gz
fbos-224ed7b13ceadd05d27e61d3a0fdd34beb0c7745.zip
Fix initrd parsing because of a path change
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à <mikisabate@gmail.com>
Diffstat (limited to 'include')
-rw-r--r--include/fbos/sched.h6
1 files changed, 3 insertions, 3 deletions
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 {