iglunix/README.md

68 lines
3.0 KiB
Markdown
Raw Permalink Normal View History

2021-04-17 14:44:52 +00:00
# [Iglunix](https://iglunix.xyz/)
2020-12-27 17:39:29 +00:00
Unix like software distribution with no GNU components
2020-12-27 16:34:08 +00:00
All build scripts are 0BSD Licensed.
2021-04-17 14:44:52 +00:00
To create an ISO from a non-iglunix OS please see https://github.com/iglunix/iglunix-autobuild
2021-03-02 09:53:31 +00:00
2021-08-23 22:00:11 +00:00
## Is this GNU/Linux
No, GNU currently contributes roughly 10 MiB of code in the base system whilst,
2021-10-09 17:36:36 +00:00
LLVM and Linux both contribute approximately 1 GiB each. Instead we suggest that
2021-08-23 22:00:11 +00:00
one should refer to Igluinx running on the Linux kernel as LLVM/Musl/Linux.
LLVM and Linux because they are the two largest packages and make up the
majority of the base system, and Musl to be explicit about the C library,
target triple and to differentiate it from any system using LLVM's libc
(which will may very well likely use in the future).
2022-04-26 09:15:04 +00:00
## Instalation
See [INSTALL.md](INSTALL.md)
2021-03-28 14:43:05 +00:00
## Discord
2021-04-17 14:44:52 +00:00
Join us at [link](https://discord.gg/NKB9qD2bMx)
2021-03-28 14:43:05 +00:00
2022-04-26 09:15:04 +00:00
<!--
## Status of Other Kernels
### FreeBSD
FreeBSD has solid upstream LLVM support which would make it ideal for iglunix.
However, I haven't been successful at building the required parts of the base
system.
### OpenBSD
2021-06-24 11:12:03 +00:00
Iglunix has been tested to work on OpenBSD. (don't forget to symlink `libc.so`
otherwise the toolchain breaks).
### Darwin
I have found no easy way of building libc on Darwin platforms as on yet.
Because of this I haven't got far at all porting Iglunix to Darwin
based systems such as MacOS and PureDarwin.
2022-04-26 09:15:04 +00:00
-->
2021-05-30 13:15:27 +00:00
## Web Browsers
2022-01-16 10:00:48 +00:00
Iglunix has Firefox ESR packaged requiring 2 extra GNU packages: `gm4` and
`autoconf`. Iglunix may switch to using a patched version of webkit gtk with
openssl and maybe ffmpeg replacing gstreamer.
2021-08-23 22:00:11 +00:00
## Replacements LUT
2021-08-23 22:03:05 +00:00
|standard tool | iglunix tool | use |
|--------------|--------------------|----------------------------------|
|glibc | musl | libc |
2021-10-09 17:36:36 +00:00
|glibc | libexecinfo | Backtrace functions |
2021-08-23 22:03:05 +00:00
|libstdc++ | libc++ | C++ standard library |
2021-10-09 17:36:36 +00:00
|libgcc | libunwind | Stack unwinding |
2021-12-09 20:31:48 +00:00
|libgcc | compiler-rt | Compiler builtins |
2021-08-23 22:03:05 +00:00
|bison | byacc | POSIX yacc |
|coreutils | toybox+busybox | POSIX utilities |
|gcc | clang | C++ compiler |
2021-10-09 17:36:36 +00:00
|zlib | zlib-ng | Compression library |
2021-08-23 22:03:05 +00:00
|gmake | bmake, others | POSIX Make implementation |
|ninja | samurai | Ninja build implementation |
|GNU M4 | OpenBSD M4 | POSIX M4 implementation |
|ncurses | netbsd-curses | X/Open Curses implementation |
|bash | mksh | Shell |
|Linux PAM | Open PAM | Pluggable Authentication Modules |
2021-10-09 17:36:36 +00:00
|sudo | doas | Privilege escalation |
|pkg-config | pkgconf | Package configuration tool |
2021-09-26 12:19:02 +00:00
|e2fsprogs | make_ext4fs | Make an ext4 file system |