rezgui / fpos

Free Pascal Operating System (FPOS) is a operating system consists of a minimal kernel built on FreePascal. It contains a Scheme implementation of a hard drive (ATA) driver, keyboard (PS2), serial (8250 UART), FAT32 filesystem and a small real time clock manager. The project was built to experiment with developement of operating system using a high level functional language to study the developement process and the use of Scheme to build a fairly complex system.
GNU General Public License v2.0
84 stars 18 forks source link

endless reboots #6

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
before GRUB:
you need to put this in an IDE drive.in wont work in a SATA one yet.
this is a GRUB issue.

after grub:

if the kernel shows 'boot' after entrypoint xxxxxxx and spontaneously
reboots this is why.THERE IS NO HEAP allocated.

when adding the new heap to the kernel I get this:

heap.pas(37,19) Error: Wrong number of parameters specified for call to
"AllocPage"
heap.pas(38,8) Error: Identifier not found "Map"
heap.pas(52,15) Error: Identifier not found "GetMapping"
heap.pas(53,18) Error: Incompatible type for arg no. 1: Got "LongWord",
expected "PPageTableEntry"
heap.pas(54,10) Error: Identifier not found "UnMap"
heap.pas(150) Fatal: There were 5 errors compiling module, stopping
Fatal: Compilation aborted

so I have to use the older one for now. heap, vmm, and pmm files are linked
together.replace as a threesome.

--Jazz 

Original issue reported on code.google.com by jasm...@lavabit.com on 16 Feb 2009 at 3:04

GoogleCodeExporter commented 9 years ago
[SOLVED] NO.
no nonono no... no.

'after grub:'

that was an issue I had with my units and things pointing where they shouldn't
have.THIS SHOULD NEVER HAPPEN. Its not the heap, but the heap needs help.

Original comment by jasm...@lavabit.com on 19 Feb 2009 at 8:38

GoogleCodeExporter commented 9 years ago
scroll buffer is causing reboots, lockups with latest release.

Original comment by frazzled...@gmail.com on 11 Oct 2013 at 10:46