Remove scripts directory

Scripts in scripts/ directory were platform-dependent and
even distribution-dependent, so they were not usable for anyone
except me. That's why I removed them from repository.
This commit is contained in:
Maciej Krzyżanowski 2024-08-20 00:03:08 +02:00
parent ee8230b8f2
commit 6e13394215
4 changed files with 0 additions and 15 deletions

View File

@ -1,4 +0,0 @@
#!/bin/bash
../../Kompilator/cross/bin/i686-elf-as ../source/boot.s -o ../build/boot.o
../../Kompilator/cross/bin/i686-elf-gcc -c ../source/kernel.c -o ../build/kernel.o -std=gnu99 -ffreestanding -O2 -Wall -Wextra
../../Kompilator/cross/bin/i686-elf-gcc -T ../source/linker.ld -o ../build/mkos.bin -ffreestanding -O2 -nostdlib ../build/boot.o ../build/kernel.o -lgcc

View File

@ -1 +0,0 @@
indent -nbad -bap -nbc -bbo -hnl -bl -bli0 -brs -c33 -cd33 -ncdb -ncdw -ci4 -cli0 -d0 -di1 -nfc1 -i8 -ip0 -l80 -lp -npcs -nprs -npsl -sai -saf -saw -ncs -nsc -sob -nfca -cp33 -ss -ts8 -il1 source/kernel.c

View File

@ -1,4 +0,0 @@
#!/bin/bash
cp ../build/mkos.bin ../isodir/boot/mkos.bin
cp ../config/grub.cfg ../isodir/boot/grub/grub.cfg
grub-mkrescue -o ../build/mkos.iso ../isodir

View File

@ -1,6 +0,0 @@
#!/bin/bash
./compile.sh
./makeiso.sh
# Remove lock in case of bad shutdown, it makes debugging easier
rm ../filesystem/dysk.img.lock
bochs -f ../config/bochsrc