Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kot-org/new-kot
https://github.com/kot-org/new-kot
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/kot-org/new-kot
- Owner: kot-org
- License: gpl-3.0
- Created: 2023-08-24T06:46:17.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-02-05T18:03:58.000Z (11 months ago)
- Last Synced: 2024-02-06T18:52:48.299Z (11 months ago)
- Language: C
- Size: 26 MB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
Awesome Lists containing this project
README
# The New Kot
A 64-bit x86 operating system written in C/C++[![C/C++ CI](https://github.com/kot-org/new-kot/actions/workflows/c-cpp.yml/badge.svg)](https://github.com/kot-org/new-kot/actions/workflows/c-cpp.yml)
[![Discord](https://discordapp.com/api/guilds/901353839557476363/widget.png?style=banner3)](https://discord.gg/XJzhM7uKkz)
# Screenshots
# Build it yourself
That's easy! Run `make init` to install all the required build tools and then run `PACKAGE=all make build` to start the building process. Right after, `make run` will start **TNK** in Qemu.# How to Use the Main Makefile
To effectively use the main Makefile in this project, follow these steps:
1. **Initialization:** Before you can build, run, or perform any other actions, you need to initialize the project. Run the following command: `make init`
2. **Build a Specific Package:**
To build a specific package, use the `PACKAGE` variable. For example, if you want to build the kernel, run: `PACKAGE=kernel make build`
This command will also work to rebuild the specified package if necessary.3. **Build All Packages:**
To build all packages in the project, simply use the following command: `PACKAGE=all make build`
This command will build all packages and also rebuild them if needed.4. **Configure a Specific Package:**
To configure a specific package, again use the `PACKAGE` variable. For instance, if you want to configure the kernel, run: `PACKAGE=kernel make reconfigure`
This command will also work to reconfigure the specified package if necessary.5. **Configure All Packages:**
To configure all packages in the project, use the following command: `PACKAGE=all make reconfigure`
This command will configure all packages and also reconfigure them if needed.
By following these instructions, you can effectively use the main Makefile to build and configure packages in your project.6. **Use USB key:**
**:warning: Kot is alpha software, use it at your own risk.** To use a USB key with **The New Kot**, please note that this method requires a certain level of knowledge about the Linux system, as improper usage can potentially damage your system's data. To utilize this method, you need to set the `BOOT_DEVICE` variable with the correct USB device name. Here's an example of how to do it: `BOOT_DEVICE= PACKAGE=all make build`
Replace with the actual device name of your USB key, such as /dev/sdc. Be aware that using the USB key in this way will format it, erasing any existing data. Ensure that you have correctly identified the USB device name, as specifying the wrong device can result in data loss. This command will start The New Kot in Qemu using the specified USB key as the boot device.7. **Use your PC:**
**:warning: Kot is alpha software, use it at your own risk.**To use boot **The New Kot** on your PC, please note that this method requires a certain level of knowledge about the BIOS, as improper usage can potentially damage your system's data. First of all you have to run the command `INSTALL=true PACKAGE=all make build`, and then you can reboot your PC. Then enter into your BIOS and select `EFI/limine/BOOTX64.EFI` as a boot file.