Skip to content
This repository has been archived by the owner on May 12, 2024. It is now read-only.

Commit

Permalink
stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinAlavik committed Apr 2, 2024
1 parent 9b50b66 commit 58fda90
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 20 deletions.
Binary file removed Roboto-Black.psf
Binary file not shown.
2 changes: 1 addition & 1 deletion initrd/usr/share/paradox/bible_votd
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Acts 1:8 But you will receive power when the Holy Spirit has come upon you, and you will be my witnesses in Jerusalem, and in all Judea and Samaria, and to the farthest parts of the earth.”
1 Corinthians 1:2 to the church of God that is in Corinth, to those who are sanctified in Christ Jesus, and called to be saints, with all those in every place who call on the name of our Lord Jesus Christ, their Lord and ours.
17 changes: 0 additions & 17 deletions kernel/entry/kernel.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,22 +35,5 @@ return codes)

int kmain()
{
tty_spawn(1, FONT_BIG);

vfs_op_status status;
char* votd = NULL;

status = driver_read(vfs, 0, "/usr/share/paradox/bible_votd", &votd);

if(status != STATUS_OK)
return KERNEL_QUIT_ERROR;

if (votd != NULL) {
dprintf("BibleVOTD: \033[1m%s\033[0m\n", votd);
free(votd);
}

keyboard.out = true;

return KERNEL_QUIT_HANG;
}
Empty file removed modules/.gitkeep
Empty file.
3 changes: 1 addition & 2 deletions tools/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@ else
fi

mkdir -p iso_root

curl -s "https://labs.bible.org/api/?passage=votd&type=text&formatting=plain" > initrd/usr/share/paradox/bible_votd
mkdir -p modules

tar -cvf modules/ramdisk.tar initrd/*

Expand Down

0 comments on commit 58fda90

Please sign in to comment.