Bananymous
  • Joined on 2023-09-10
Bananymous pushed to main at Bananymous/banan-os 2023-11-28 23:52:44 +02:00
eeadf5fff1 Userspace: Implement basic test for framebuffer mmap
58be87ba3c Kernel: Implement mmaping for framebuffer device
6d7e61225b Kernel: Add framebuffer device to devfs
eb69fc477b Kernel: Add API for implementing mmappable devices
74b3fc2e7c Kernel: Reading from negative offset in fb dev gives out info
Compare 8 commits »
Bananymous pushed to main at Bananymous/banan-os 2023-11-22 21:59:26 +02:00
0adb28e23f Kernel: Delete the now obsolete VesaTerminalDriver
d4aa33b18b Kernel: Implement TerminalDriver for Framebuffer device
4ba3a17af3 Kernel: Add more APIs to FramebufferDevice
e9d762892c Kernel: Implement basic framebuffer device
Compare 4 commits »
Bananymous pushed to main at Bananymous/banan-os 2023-11-22 13:57:04 +02:00
d98782a10c Bootloader: Add cache to ext2 inode data block indices
f86c9584f9 Bootloader: add missing size directive
52807366bf Kernel: Make Ext2 filesystem use BlockDevice instead of Partition
b437d4eb41 Kernel: TmpFS doesn't mark any functions as final
8b7f3f1fb2 Kernel: Add common {read,write}_blocks() api to BlockDevice
Compare 7 commits »
Bananymous commented on issue Bananymous/banan-os#3 2023-11-21 12:33:10 +02:00
Check env var is set explicitly in the beginning?

Resolved in #4 and 5e9b21bdce3a96efc797f698757d94830c0f03e7

Bananymous closed issue Bananymous/banan-os#3 2023-11-21 12:33:10 +02:00
Check env var is set explicitly in the beginning?
Bananymous pushed to main at Bananymous/banan-os 2023-11-21 12:31:49 +02:00
5e9b21bdce BuildSystem: Check value of BANAN_UEFI_BOOT with `if ((...)); then`
Bananymous pushed to main at Bananymous/banan-os 2023-11-20 14:19:22 +02:00
07b70ea7b4 BuildSystem: Add missing bootloader install script
Bananymous commented on issue Bananymous/banan-os#2 2023-11-20 14:18:31 +02:00
BuildSystem: prefer unambiguous mount point to avoid conflicts

Resolved in #4

Bananymous closed issue Bananymous/banan-os#2 2023-11-20 14:18:31 +02:00
BuildSystem: prefer unambiguous mount point to avoid conflicts
Bananymous pushed to main at Bananymous/banan-os 2023-11-20 14:16:59 +02:00
0563643e1c Merge pull request 'BuildSystem: custom mount directory for bananos image to avoid conflicts' (#4) from Sinipelto/banan-os:main into main
d72db1f81c BuildSystem: image sh
6cfa56dcec BuildSystem: image create sh
f97922a2b5 Update script/image.sh
566724d986 Update script/image-create.sh
Compare 7 commits »
Bananymous merged pull request Bananymous/banan-os#4 2023-11-20 14:16:58 +02:00
BuildSystem: custom mount directory for bananos image to avoid conflicts
Bananymous commented on pull request Bananymous/banan-os#4 2023-11-20 13:58:54 +02:00
BuildSystem: custom mount directory for bananos image to avoid conflicts

Also for future reference the commit messages should be in the form <target>: <brief description>. Where <target> is BuildSystem in this case.

Bananymous commented on issue Bananymous/banan-os#3 2023-11-20 13:50:23 +02:00
Check env var is set explicitly in the beginning?

Yeah that can be checked. Also the check could probably just be (($BANAN_UEFI_BOOT)) and let the shell check if it is zero or non-zero.

Bananymous commented on pull request Bananymous/banan-os#4 2023-11-20 13:43:21 +02:00
BuildSystem: custom mount directory for bananos image to avoid conflicts

If we change to custom mount point I think it should be within this repo. Maybe $BANAN_BUILD_DIR/mnt? That way there is no way to leave random directory in root.

Bananymous commented on issue Bananymous/banan-os#1 2023-11-20 00:59:36 +02:00
Toolchain build script is not working

Fixed in commit 8b81406b81efc482996f7b0c57f3207aa0b49a0e

I moved full toolchain compilation to single pass of toolchain/build.sh which seemed to fix the issue. No idea what the problem actually…

Bananymous closed issue Bananymous/banan-os#1 2023-11-20 00:59:36 +02:00
Toolchain build script is not working
Bananymous pushed to main at Bananymous/banan-os 2023-11-20 00:56:28 +02:00
f2397b775c BuildSystem: Remove old bootloader target
8b81406b81 Toolchain: Build full toolchain with one call to toolchain/build.sh
e2515c1109 Buildsystem: default bootloader is not my custom one
5293ae070d Kernel: ProcFS inodes reflect processes ruid/rgid
6e2443ca72 Bootloader do some directory restructuring
Compare 5 commits »
Bananymous pushed to main at Bananymous/banan-os 2023-11-17 22:47:09 +02:00
a312d75bb2 Bootloader: Implement VESA video mode query and pass it to kernel
a554bd0fd8 Bootloader: Fix kernel memset to zero
f0d2a211ea Bootloader add temporary initial command line
065eec430e Kernel/Bootloader: banan-os can now be booted with my bootloader :D
5f4d81a502 Bootloader: Clear screen, better memcpy
Compare 14 commits »
Bananymous pushed to main at Bananymous/banan-os 2023-11-15 16:58:33 +02:00
a9412aa741 Bootloader: Implement basic ext2 filesystem
Bananymous opened issue Bananymous/banan-os#1 2023-11-15 16:41:12 +02:00
Toolchain build script is not working