Jehanne Operating System http://jehanne.h--k.it
Go to file
Giacomo Tesio 0adf1b0431 new build: get rid of Go with few rc scripts. 2021-12-30 00:55:06 +01:00
arch new build: get rid of Go with few rc scripts. 2021-12-30 00:55:06 +01:00
cfg libposix: deep refactor; add sys/posixly command 2017-12-18 23:02:36 +01:00
doc Clean trailing spaces 2019-05-05 00:31:21 +02:00
hacking@e6908814ef new build: get rid of Go with few rc scripts. 2021-12-30 00:55:06 +01:00
lib rc: use some uppercase variables (PATH, USER...) 2017-10-22 13:22:37 +02:00
mnt Added root folders mnt/ pkgs/ and tmp/ 2015-12-22 11:46:42 +00:00
pkgs Added root folders mnt/ pkgs/ and tmp/ 2015-12-22 11:46:42 +00:00
qa new build: get rid of Go with few rc scripts. 2021-12-30 00:55:06 +01:00
sys new build: get rid of Go with few rc scripts. 2021-12-30 00:55:06 +01:00
tmp Added root folders mnt/ pkgs/ and tmp/ 2015-12-22 11:46:42 +00:00
usr/glenda rc: fix variables in /usr/glenda/lib/profile 2017-12-22 00:45:44 +01:00
.gitignore .gitignore: add mksh's related patterns 2017-12-18 23:02:44 +01:00
.gitmodules Add devtools (as submodule) in hacking/ 2015-12-22 10:38:12 +00:00
.travis.yml travis-ci: try to fix ppa 3 2018-01-15 23:40:51 +01:00
LICENSE.md Clarify Forsyth's and 9front's copyrights 2018-01-05 02:30:45 +01:00
POLITICS.md Update POLITICS.md 2020-01-06 00:44:58 +01:00
README.md README: Fix dependencies (thanks Ingo Struck) 2020-09-19 23:31:27 +02:00
jehanne.rc.build new build: get rid of Go with few rc scripts. 2021-12-30 00:55:06 +01:00

README.md

Build Status Coverity Badge

Jehanne

Jehanne is a simple operating system.

Jehanne has noble ancestors:

  • most of userland tools, a lot of wisdom and some kernel modules, come from 9front
  • the kernel is a fork of Charles Forsyth's Plan9-9k
  • most of the build system and some valuable piece of code come from Harvey OS

Still the project is named after a humble peasant, the famous French heretic Joan of Arc, because it diverges deeply from the design and conventions of its predecessors.

Overview

This is the main repository, used to build the system as a whole:

  • arch contains one folder for each supported architecture, with specific C headers, libraries and executables (note that by architecture we intend any kind of physical or virtual machine that is able to run code, thus rc is actually an architecture)
  • sys is the system folder
    • include contains portable C headers
    • lib contains data and scripts used by the running system
    • man contains manual pages
    • src contains the sources of the system
  • doc contains useful documentation for Jehanne development
    • license contains detailed info about Jehanne licenses
    • hacking contains details about how to build and modify Jehanne
  • hacking contains the utilities used to develop Jehanne
  • qa contains the regression tests
  • mnt contains default mount targets
  • usr contains the users' folders
  • pkgs will contains the installed packages

The running system also includes supplemental folders like /lib, /cmd and /dev that are bound during the boot as required.

Build

To build Jehanne and play with it, you need to have git, golang, qemu, gcc, binutils and bison installed. For example on Debian GNU/Linux 10 you should be able to get going with

sudo apt-get install git golang build-essential flex bison qemu-system autoconf autoconf-archive curl automake-1.15

After the repository clone, you can give a look with

git submodule init                               # we have a lot of submodules
git submodule update --init --recursive --remote --depth 1
./hacking/devshell.sh                            # start a shell with appropriate environment
./hacking/continuous-build.sh                    # to build everything (will take a while)
./hacking/runOver9P.sh                           # to start the system in QEMU
./hacking/drawterm.sh                            # to connect Jehanne with drawterm

Hacking

Jehanne is a work in progress. Forks and pull requests are welcome.

In doc/hacking you will find all you need to know about its principles, design and weirdness.

There's a lot of work to do, in every area of the system.

To coordinate our efforts, we use the github issues. To discuss (and even debate) about the design and development of Jehanne we use the JehanneOS mailing list: please join and present yourself and your attitudes.