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

[Scheduler] Add function for loading from external #48

Closed wake-0 closed 9 years ago

wake-0 commented 9 years ago

Not sure about this function. Add a function, which can be used to load an external process or from an external sd card.

trylimits commented 9 years ago

Concept should be like this:

1.) External program has to be compiled/linked with our own linker file 2.) Loader should copy the defined sections into memory 3.) SchedulerStartProcess(..) should be called with the function which is placed at a specific memory address

trylimits commented 9 years ago

This bug is tightly related to Bug #46. And to be honest I really don't see any difference. The function which "loads from external" is imo exactly what a loader does.

wake-0 commented 9 years ago

So we implement a loader and use it in the scheduler to load an external process?

trylimits commented 9 years ago

This can be closed as the only issue is to implement a loader which is handled in #46