Commit Graph

1348 Commits

Author SHA1 Message Date
mintsuki 8920c89ad5 build: Unify and preprocess linker scripts 2022-02-02 18:18:49 +01:00
mintsuki 9332a9f4e1 build: Misc improvements 2022-02-02 16:24:13 +01:00
mintsuki d7b8c3cf8a build: Misc improvements 2022-02-01 08:04:55 +01:00
mintsuki e4bd2cfdbf build: Move program detection logic to configure script 2022-01-31 11:46:19 +01:00
mintsuki ac865be1a1 build: Minor misc fixes 2022-01-29 17:23:41 +01:00
mintsuki 9fc8ec0ce3 pmm_randomise_memory: Add guard for BIOS port to avoid accessing bogus pointers 2022-01-29 12:29:27 +01:00
mintsuki 3fa7d9d1fa chainload: Assume boot drive if DRIVE parameter is omitted 2022-01-29 11:54:38 +01:00
mintsuki 69529b1269 chainload: Readd wrongly removed noinline attribute 2022-01-29 11:45:03 +01:00
mint ea4db246c8
Merge pull request #154 from czapek1337/trunk
Several UX improvements around the console, menu and entry editor
2022-01-29 08:03:22 +01:00
czapek1337 a6f6958b41 readline: Don't delete input beyond a null terminator 2022-01-29 08:00:55 +01:00
czapek1337 77ed9d23ca console: Use escape sequence instead of reset_term() 2022-01-29 07:52:44 +01:00
czapek1337 077341d102 console: Add a clear command 2022-01-29 00:00:07 +01:00
czapek1337 53e515e642 readline: Zero out the buffer before using it 2022-01-29 00:00:07 +01:00
czapek1337 2c1604089c readline: Handle END/HOME keys 2022-01-29 00:00:01 +01:00
czapek1337 0c677d093e console,editor: Filter out non-printable characters 2022-01-28 23:51:34 +01:00
czapek1337 ca5f7a6e46 menu: Handle uppercase inputs for menu hotkeys 2022-01-28 23:10:44 +01:00
mintsuki 019dddccba limine-install: Fix issue introduced in 55166fd where GPT checksum would corrupt 2022-01-28 16:25:07 +01:00
mint 1cdb4c287a
Merge pull request #153 from Itay2805/trunk
ntfs: allow for bigger resident index and resident data
2022-01-28 12:56:56 +01:00
Itay Almog 92580a3b47 ntfs: allow for bigger resident index and resident data 2022-01-28 13:48:21 +02:00
mintsuki b023b96c6b build: Add *.tar.gz to maintainer-clean's rm 2022-01-28 12:35:53 +01:00
mintsuki 3afb251750 build: Add *.tar.gz to .gitignore 2022-01-28 12:29:38 +01:00
mintsuki e412997a41 build: Make limine-hdd.h target not check toolchain 2022-01-28 12:16:03 +01:00
mintsuki fdd93826f5 ntfs: Change most panics into prints 2022-01-28 11:56:51 +01:00
mintsuki 2db3240b99 paging: Some 1GiB pages adjustments 2022-01-28 11:06:22 +01:00
mintsuki 68faef19be misc: Various fixes 2022-01-28 10:23:26 +01:00
mintsuki 3ea53247c2 misc: incbin -> hgen 2022-01-28 09:35:48 +01:00
mintsuki 8670057e40 build: Makefile fixes 2022-01-28 08:53:35 +01:00
mintsuki 580a2c3461 limine-install: Make it pure C11 2022-01-28 08:35:06 +01:00
mintsuki 55166fda2f limine-install: Overhaul 2022-01-27 12:53:40 +01:00
mint 9fc15b377a
Merge pull request #152 from Andy-Python-Programmer/trunk
stivale tests: fix BUG: Unidentified tag 0x9b4358364c19ee62
2022-01-27 06:58:59 +01:00
Andy-Python-Programmer c506f35d9f
stivale tests: fix BUG: Unidentified tag 0x9b4358364c19ee62
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 16:43:06 +11:00
mint 10b585a9f1
Merge pull request #151 from Andy-Python-Programmer/trunk
Use 1GiB pages where ever its possible
2022-01-27 05:44:16 +01:00
Andy-Python-Programmer 061c8aa34a
is_1gib_page_supported: use printv instead
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 15:41:35 +11:00
Andy-Python-Programmer e64eeef633
is_1gib_page_supported: use (void), not () if there's no args
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 15:40:51 +11:00
Andy-Python-Programmer 66d5941077
vmm: fix implicit declaration of print
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 15:06:56 +11:00
Andy-Python-Programmer 4af12fe517
paging: emulate support for 1gib pages if not avaliable
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 15:01:59 +11:00
Andy-Python-Programmer 51f5e5b092
direct_map: use 1gib pages to construct the direct map
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 12:03:20 +11:00
Andy-Python-Programmer 45ecb0fb4d
stivale_build_pagemap: use 1GiB pages to map 0 to 2GiB at 0xffffffff80000000
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 11:04:59 +11:00
Andy-Python-Programmer 8866470d01
map_page: add support for mapping 1GiB pages
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 10:59:16 +11:00
Andy-Python-Programmer d51d5cccbf
map_page: take the page size as an argument (enum)
Signed-off-by: Andy-Python-Programmer <andypythonappdeveloper@gmail.com>
2022-01-27 10:54:26 +11:00
mintsuki 80ae303ba8 misc: Fixes for GCC 12 warnings; add extern prototypes for inline functions 2022-01-26 03:58:28 +01:00
mintsuki d307056635 misc: Disable strict aliasing, just in case 2022-01-25 09:16:26 +01:00
mintsuki 5aab620955 panic: Add missing ifdef 2022-01-25 08:50:36 +01:00
mintsuki 5b3e8c393f bios: Move terminal entirely to stage 3 2022-01-25 08:41:17 +01:00
mintsuki d0433e1c97 limine-install: Do not use void pointer arithmetic 2022-01-25 07:28:28 +01:00
mintsuki 1ed5ee7ef1 build: Manually copy install-sh into tarball 2022-01-22 05:47:45 +01:00
mintsuki 97231ac9a5 build: Make automake *copy* missing files 2022-01-22 05:08:28 +01:00
mintsuki efc5084aa8 misc: Small NTFS test case tweak 2022-01-22 04:37:51 +01:00
mintsuki 9ce5f54e31 misc: README.md and workflow updates 2022-01-22 04:10:48 +01:00
mintsuki a0a8b3c0d6 build: 'install' portability fixes 2022-01-22 03:46:48 +01:00