Skip to content

Commit

Permalink
closing version 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mikaku committed Nov 15, 2023
1 parent 8027e86 commit 9966164
Showing 5 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
1.5.0 - DD-Nov-2023
1.5.0 - 15-Nov-2023
===================
- Added a kernel memory allocator that uses the buddy algorithm to manage
requests smaller than PAGE_SIZE (4KiB).
@@ -171,6 +171,7 @@
sys_msgrcv().
- Fixed ata_hd_init() to not fail build if CONFIG_PCI is #undef.
- Fixed padding in fbcon_insert_char() to use character 0x20 instead of 0x00.
- Fixed vgacon_scroll_screen() to use double-buffering.
- Small fixes and cosmetic changes.


2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -86,7 +86,7 @@ References
License
-------
Fiwix is free software licensed under the terms of the MIT License, see the LICENSE file for more details.
Copyright (C) 2018-2022, Jordi Sanfeliu.
Copyright (C) 2018-2023, Jordi Sanfeliu.

Credits
-------
2 changes: 1 addition & 1 deletion include/fiwix/system.h
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@

#define UTS_SYSNAME "Fiwix"
#define UTS_NODENAME "(none)"
#define UTS_RELEASE "1.4.0"
#define UTS_RELEASE "1.5.0"
#define UTS_DOMAINNAME "(none)"

struct sysinfo {
2 changes: 1 addition & 1 deletion include/fiwix/version.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
#define UTS_VERSION "Tue Nov 15 10:02:21 CET 2022"
#define UTS_VERSION "Wed Nov 15 07:36:37 UTC 2023"
2 changes: 1 addition & 1 deletion kernel/main.c
Original file line number Diff line number Diff line change
@@ -77,7 +77,7 @@ void start_kernel(unsigned int magic, unsigned int info, unsigned int last_boot_
#endif /* CONFIG_QEMU_DEBUGCON */

printk(" Fiwix kernel v%s for i386 architecture\n", UTS_RELEASE);
printk(" Copyright (c) 2018-2022, Jordi Sanfeliu\n");
printk(" Copyright (c) 2018-2023, Jordi Sanfeliu\n");
printk("\n");
printk(" (built on %s with GCC %s)\n", UTS_VERSION, __VERSION__);
printk("\n");

0 comments on commit 9966164

Please sign in to comment.