===============================================================================
                       WHY JURKOS IS NOT A DISTRO
===============================================================================

JurkOS is 95% a Custom Operating System that simply uses the Linux kernel as 
a bare-metal hardware driver component.

Here is the technical breakdown of why JurkOS does not fit the "distro" label:

1. NO GNU USERLAND
------------------
Standard Linux distributions are technically "GNU/Linux" because they pack the 
entire suite of GNU core utilities. JurkOS completely bypasses this. It avoids 
the heavy, traditional software stack to maintain an ultra-minimal footprint.

2. NO PACKAGE MANAGER
---------------------
A defining feature of a Linux distro is its package manager (like apt, pacman, 
or dnf) connected to online repositories. JurkOS has no package manager. You 
cannot install apps out of a box. Everything inside must be manually written 
and statically compiled in C.

3. CUSTOM INIT PROCESS (PID 1)
------------------------------
Distros rely on standard init systems like systemd, SysVinit, or OpenRC. 
JurkOS uses a completely independent, custom-coded C binary (/sbin/main) as 
its PID 1. It handles mounting, filesystem expansion, and system setup 
using its own hardcoded logic.

4. NO STANDARD USER MANAGEMENT
------------------------------
There is no traditional multi-user environment or standard shadow/passwd root 
security. Account persistence is handled by a custom Base64 storage scheme 
at /encrypted/userlogin/. This is purely independent custom logic.

5. BOOTLOADER PURITY (COMING IN 1.1 ALPHA)
------------------------------------------
While version 1.0 Alpha used GRUB (the standard distro bootloader), version 
1.1 Alpha removes GRUB entirely. By replacing it with Extlinux, JurkOS strips 
away another major piece of traditional distro infrastructure, leaving a 
purely lightweight, independent boot sequence.

THE REMAINING 5%
----------------
Being that 5% being what? The linux kernel and modules. Since you cannot remove 
that because an OS needs a kernel or else the OS will just be useless and 
unbootable, having 95% of the whole OS being a custom OS is already enough! 
There is just... no reason to fight that 5%. You know what I mean!

CONCLUSION
----------
JurkOS is a specialized, independent platform. It uses a Linux kernel engine 
but drops 95% of the distribution ecosystem to prioritize speed, efficiency, 
and a direct developer-to-kernel relationship.
===============================================================================