1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- ; internal
- [Configuration]
- Paths.Search =~/obg;~/../source;~/PELinker;~/../UnixAos;~/vy.ants;c:/windows/fonts
- Paths.Work = ~/Work
- Oberon = Oberon.Text
- Boot = Traps.Install
- Boot1 = FileTrapWriter.Install
- Boot2 = Display.Install --fullscreen
- Boot3 = WindowManager.Install
- Boot4 = Clipboard.Install
- Boot5 = FSTools.Mount WORK RelativeFileSystem ./
- Boot7 = Autostart.Run
- Boot8 = Heaps.SetMetaData
- Boot9 = Kernel.GC
- ObjectFileExtension=.GofW
- Trace=File
- TraceModules=0
- TraceCommands=1
- TraceBoot=0
- EnableReturnBlocks=0
- EnableFreeLists=0
- ; Notes:
- ; Only the values within the very first configuration section are considered.
- ; For overriding one ore more values, create a file called myaos.ini in the
- ; same directory and provide a configuration section with your overrides.
- ; the file name of the ini file can be overridden by a command line option -ini <filename>
- [Description]
- BootX= <boot command, X empty or between 1 and 9>
- Paths.Search = <search path that is taken by A2 to look for files >
- Paths.Work = <path that is taken by A2 to store to by default >
- Obeorn = <configuration file taken by the inbuilt Oberon system >
- TraceModules= < 0 or 1: if Trace of module loading is switched on or off>
- Trace= < File or Console >
- TraceFile = <filename for trace file (if Trace = File)
- configurations with external oberon require a release that was compiled with external oberon files
- [Configuration for starting with A2 but using external Oberon]
- Oberon = OberonExternal.Text
- MB=2
- [Configuration for starting with external Oberon]
- Oberon = OberonExternal.Text
- Boot1 = Oberon.Call Oberon.Start
|