diff options
-rw-r--r-- | README.md | 5 | ||||
-rw-r--r-- | src/kernel/graphics/font.h | 5 |
2 files changed, 8 insertions, 2 deletions
@@ -35,3 +35,8 @@ * Test Melvix in QEMU (opens after `make test`) * Optional: Flash the built ISO to a USB/Floppy/CD drive using `sudo dd if=./build/melvix.iso of=/dev/sdX bs=4M oflag=sync` + +## Licenses +Melvix is released under the MIT License and uses the following 3rd party applications (as stated in the regarding files): +* [Spleen font](https://github.com/fcambus/spleen) - [MIT License](https://github.com/fcambus/spleen/blob/5759e9abb130b89ba192edc5324b12ef07b7dad3/LICENSE) +* [bdf2c converter](https://github.com/pixelmatix/bdf2c) - [AGPL 3.0 License](https://github.com/pixelmatix/bdf2c/blob/b07deb7a484751b3e3fb6c952f6bc54b1b2950fd/AGPL-3.0.txt) diff --git a/src/kernel/graphics/font.h b/src/kernel/graphics/font.h index 34a1358..7a110e1 100644 --- a/src/kernel/graphics/font.h +++ b/src/kernel/graphics/font.h @@ -1,5 +1,6 @@ -// (c) 2009, 2010 Lutz Sammer, License: AGPLv3 -// Generated from Spleen font via bdf2c +// Generated using the Spleen font and the bdf2c converter (modified using the conv.sh script) +// Spleen font: (c) 2018-2019, Frederic Cambus, License: MIT +// bdf2c: (c) 2009-2010 Lutz Sammer, License: AGPLv3 #ifndef MELVIX_FONT_H #define MELVIX_FONT_H |