Rename Sortix kernel directory to kernel.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-12-20 01:24:47 +01:00
parent 18d2695439
commit 98a87fa1e5
228 changed files with 10 additions and 10 deletions

View File

@ -3,7 +3,7 @@ MAKEFILE_NOT_MEANT_FOR_SORTIX=1
include compiler.mak include compiler.mak
include version.mak include version.mak
MODULES=doc libc libm dispd games mkinitrd mxmpp utils bench ext mbr sortix MODULES=doc libc libm dispd games mkinitrd mxmpp utils bench ext mbr kernel
ifndef SYSROOT ifndef SYSROOT
SYSROOT:=$(shell pwd)/sysroot SYSROOT:=$(shell pwd)/sysroot
@ -66,7 +66,7 @@ sysroot-fsh:
.PHONY: sysroot-base-headers .PHONY: sysroot-base-headers
sysroot-base-headers: sysroot-fsh sysroot-base-headers: sysroot-fsh
(for D in libc libm sortix; do ($(MAKE) -C $$D install-headers $(SUBMAKE_OPTIONS) DESTDIR="$(SYSROOT)") || exit $$?; done) (for D in libc libm kernel; do ($(MAKE) -C $$D install-headers $(SUBMAKE_OPTIONS) DESTDIR="$(SYSROOT)") || exit $$?; done)
.PHONY: sysroot-system .PHONY: sysroot-system
sysroot-system: sysroot-fsh sysroot-base-headers sysroot-system: sysroot-fsh sysroot-base-headers

View File

@ -538,7 +538,7 @@ initial filesystem used to bootstrap the real root filesystem.
The Sortix kernel is the core of the Sortix operating system. It provides all The Sortix kernel is the core of the Sortix operating system. It provides all
the primitives libc needs to implement a Unix-like environment. the primitives libc needs to implement a Unix-like environment.
cd /src/sortix cd /src/kernel
make make
make install make install

Some files were not shown because too many files have changed in this diff Show More