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:
commit
9b79673dcb
159 changed files with 19246 additions and 0 deletions
11
debsrc/DEBIAN/control
Normal file
11
debsrc/DEBIAN/control
Normal 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
4
debsrc/DEBIAN/postinst
Executable file
|
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
update-grub
|
||||
|
||||
3
debsrc/DEBIAN/postrm
Executable file
3
debsrc/DEBIAN/postrm
Executable 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
11
debsrc/etc/grub.d/42_sortix
Executable 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
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue