wake-0 / fhvOS

This repository contains an os for the arm cortex a8 in combination with beaglebone.
GNU General Public License v2.0
7 stars 1 forks source link

[Kernel] Implement proper OS startup #72

Closed trylimits closed 9 years ago

trylimits commented 9 years ago

We should implement a function KernelStart() which performs a proper startup of the system. The main.c in the release should only call this function. Doing this way we can continue to use the main.c to test some stuff without touching the KernelStart().

See also #58

trylimits commented 9 years ago

Implemented.

main function should just call KernelStart() in "release version". All the initialization is done by the kernel.