-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·32 lines (32 loc) · 1.45 KB
/
build.sh
File metadata and controls
executable file
·32 lines (32 loc) · 1.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# PeachOS 32-Bit Kernel project
# Copyright (C) 2026 Daniel McCarthy <daniel@dragonzap.com>
# This file is part of th PeachOS Kernel.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# version 2 as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
# See the GNU General Public License version 2 for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <https://www.gnu.org/licenses/>.
#
# For full source code, documentation, and structured learning,
# see the official kernel development video course:
# https://dragonzap.com/course/developing-a-multithreaded-kernel-from-scratch
#
# The new part two course is now here
# Learn to extend your kernel into 64-bit long mode with GUI
# Get all modules today here: https://dragonzap.com/offer/developing-a-multithreaded-kernel-from-scratch-part-two-full-series
#
# Or get them individually here:
# MODULE 1 https://dragonzap.com/course/developing-a-multithreaded-kernel-from-scratch-part-two-module-one
# MODULE 2 https://dragonzap.com/course/developing-a-multithreaded-kernel-from-scratch-part-two-module-two
#
export PREFIX="$HOME/opt/cross"
export TARGET=i686-elf
export PATH="$PREFIX/bin:$PATH"
make all