diff options
author | Richard Braun <rbraun@sceen.net> | 2017-09-21 01:23:37 +0200 |
---|---|---|
committer | Richard Braun <rbraun@sceen.net> | 2017-09-21 01:26:09 +0200 |
commit | b0b860e6cd8949c05da380dbe64b7c7c6ec75e7c (patch) | |
tree | a1c7d98eb2a370975bd82c6d3dc16349636ddddf /kern/syscnt.c | |
parent | 833316f34266a5fab2668f34c03e45db64d0ce76 (diff) |
New build system
The new build system, called xbuild, is a minimalistic kbuild-like
make-based build system, also using kconfig for scalable configurations.
Diffstat (limited to 'kern/syscnt.c')
-rw-r--r-- | kern/syscnt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kern/syscnt.c b/kern/syscnt.c index f1cc95a9..cd13a398 100644 --- a/kern/syscnt.c +++ b/kern/syscnt.c @@ -33,7 +33,7 @@ static struct list syscnt_list; static struct mutex syscnt_lock; -#ifdef X15_ENABLE_SHELL +#ifdef CONFIG_SHELL static void syscnt_shell_info(int argc, char **argv) @@ -61,7 +61,7 @@ INIT_OP_DEFINE(syscnt_setup_shell, INIT_OP_DEP(shell_setup, true), INIT_OP_DEP(syscnt_setup, true)); -#endif /* X15_ENABLE_SHELL */ +#endif /* CONFIG_SHELL */ static int __init syscnt_setup(void) |