1
0
Fork 0
mirror of https://gitlab.com/sortix/sortix.git synced 2023-02-13 20:55:38 -05:00

Initial version of Sortix.

This commit is contained in:
Jonas 'Sortie' Termansen 2011-08-05 14:25:00 +02:00
commit 9b79673dcb
159 changed files with 19246 additions and 0 deletions

11
debsrc/DEBIAN/control Normal file
View file

@ -0,0 +1,11 @@
Package: SORTIX_PACKAGE_NAME
Version: SORTIX_VERSION
Section: kernel
Priority: optional
Architecture: SORTIX_ARCH
Essential: no
Recommends: grub2, xorriso
Provides: sortix
Maintainer: Jonas Termansen [sortie@maxsi.org]
Description: Sortix is a small hobby kernel developed for the heck of it.

4
debsrc/DEBIAN/postinst Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
set -e
update-grub

3
debsrc/DEBIAN/postrm Executable file
View file

@ -0,0 +1,3 @@
#!/bin/sh
set -e
if [ "$1" != "upgrade" ]; then update-grub; fi

11
debsrc/etc/grub.d/42_sortix Executable file
View file

@ -0,0 +1,11 @@
#!/bin/sh
if [ -f /boot/sortix.bin ]; then
echo "Found Sortix kernel: /boot/sortix" >&2
cat << EOF
menuentry "Sortix" {
multiboot /boot/sortix.bin
}
EOF
fi