Initial import

This commit is contained in:
Jozef Nagy 2025-01-20 21:52:47 +01:00
commit 94aad4b8e1
Signed by untrusted user who does not match committer: crz
GPG key ID: 459A4811CEAC7068
77 changed files with 4414 additions and 0 deletions

36
Brewfile Normal file
View file

@ -0,0 +1,36 @@
####
# COMMON PACKAGES
##
# These packages are required for building and running AurixOS
# regardless of the target architecture.
###
brew "git"
brew "make"
brew "gptfdisk"
brew "xorriso"
brew "qemu"
brew "zig"
brew "util-linux" if OS.mac?
brew "gsed" if OS.mac?
####
# x86_64-SPECIFIC PACKAGES
##
# These packages are required for building and running AurixOS
# ONLY for the x86_64 architecture.
###
brew "x86_64-elf-binutils"
brew "x86_64-elf-gcc"
brew "nasm"
####
# aarch64-SPECIFIC PACKAGES
##
# These packages are required for building and running AurixOS
# ONLY for the aarch64 architecture.
###
brew "aarch64-elf-binutils"
brew "aarch64-elf-gcc"