diff options
| author | uxtbd <dev@kthread.dev> | 2026-08-18 14:40:18 +0200 |
|---|---|---|
| committer | uxtbd <dev@kthread.dev> | 2026-08-18 14:40:18 +0200 |
| commit | 1ea2764a30cd2fbad93a1a6d8b13ce1e5fdb8f8c (patch) | |
| tree | 23cbf7bd324159ee618901e201fce82579e8510e /4init/config.h | |
| parent | Initial commit (diff) | |
| download | 4suite-1ea2764a30cd2fbad93a1a6d8b13ce1e5fdb8f8c.tar.gz 4suite-1ea2764a30cd2fbad93a1a6d8b13ce1e5fdb8f8c.zip | |
4init: minimal but functional init
Diffstat (limited to '4init/config.h')
| -rw-r--r-- | 4init/config.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/4init/config.h b/4init/config.h new file mode 100644 index 0000000..6c36ccf --- /dev/null +++ b/4init/config.h @@ -0,0 +1,17 @@ +#ifndef CONFIG_H +#define CONFIG_H + +static const char *rc_path = "/usr/bin/4rc"; + +static char *const rc_argv[] = { + "4rc", + NULL +}; + +static char *const rc_envp[] = { + "PATH=/usr/local/sbin:/usr/local/bin:/usr/bin:/bin:/sbin", + "TERM=linux", + NULL +}; + +#endif // CONFIG_H |
