Einstein Platform User’s ManualFor Open Einstein 2007.7July 9, 2007 Contents
1. IntroductionEinstein Platform is a way to transform a computer in a next-generation Newton N2 (MP2x00, eMate 300). Einstein is a project to unchain NewtonOS from existing hardware. More information can be found on the Einstein Project home page: http://kallisys.com/newton/einstein/ and on the OpenEinstein page on Google Code: http://code.google.com/p/einstein/ 2. RequirementsEinstein Platform currently runs on the following machines:
Einstein Platform requires about 40 MB of storage. Einstein Platform requires an MP2x00 US, an MP2x00 D or an eMate 300 ROM image. Instructions about how to extract the ROM are available in the next section. PLEASE DO NOT ASK ME FOR A ROM FILE. I will not provide you with any. NewtonOS ROM is copyright by Apple Computer, Inc and licensors. 3. Extraction of the ROM from your NewtonTwo methods are available: via a serial line or via TCP/IP (i.e. via an Ethernet access). 3.1. Hammer/Newtsbug (serial line)Using a low-level debugger such as Hammer or Newtsbug, you can make a dump of the memory. This is slow and works over the serial line. Requirements:
Steps:
A standard get file dialog appears: choose the debugging image corresponding to your Newton (Senior CirrusNoDebug image, Senior DCirrusNoDebug image or Newt KNoDebug image for the MP2x00 US, MP2100 or eMate 300 respectively).
Wait. 3.2. ROM Dumper (TCP/IP)ROM Dumper is a faster approach but requires an internet connection between your Mac (or any Unix computer) and your Newton. Requirements:
Steps:
The platform will be configured to use the newly dumped ROM. Alternatively, you can use nc(1) command line tool. 4. Einstein on MacOS XJust copy the GUI application to your hard drive and double click it. The first time, it will ask you to tell it where the ROM image is. You can run Einstein Platform full screen. To exit Einstein, go to the Extras Drawer, tap the [i] button and then choose Quit Einstein. On MacOS X, Einstein application is scriptable. You can install packages or evaluate NewtonScript code within Einstein Platform using AppleScript. 4.1. Using the CLI flavor on MacOS XOn desktop computers, the CLI flavor should mainly be used to access the log and/or the monitor mode. It is therefore intended for developers.
4.2. Options./einstein --help
--audio or -a --width Set the width of the screen (in portrait mode). Default is 320. --height Set the height of the screen (in portrait mode). Default is 480. --log or -l Set the log file. Default is to not log. This option is incompatible with –monitor. --machine or -m --monitor Run in monitor mode. --ram Set the RAM size in 64 KB increment. 1 will mean 64 KB of RAM. 64 is the default setting (4 MB). The maximum is 255 (nearly 16 MB). 5. Einstein on arm-linux PDAs5.1. Quickstart on the ZaurusI used a Zaurus SL-5500 (thanks Sylvain) with OpenZaurus (http://www.openzaurus.org/) 3.5.4-rc ROM and the following packages:
Any more recent version of OpenZaurus and these packages should do it. I first installed the Bootstrap Image with the zImage-64-0 to have enough RAM for Einstein Platform. Then, I copied all these packages to a CF card and I installed them all at once with the ipkg command line tool on the Zaurus (with something like ipkg install /mnt/cf/*.ipk). Then, I copied the three elements from the release archive as well as the 710006 ROM image to the root of the CF card. And I launched the script with: /mnt/cf/start-einstein.sh 5.2. More details for other PDAsPlease note that Einstein Platform requires quite a large amount of RAM. Most old PDAs do not provide enough RAM for third party application unless you enter some developer mode or install a bootstrap image.
5.3. Options./einstein --help will print some help about the options. The options are summarized below: --width Set the width of the screen (in portrait mode). Default is 320. --height Set the height of the screen (in portrait mode). Default is 480. --log or -l Set the log file. Default is to not log. This option is incompatible with –monitor. --machine or -m Set the machine. Choose 717006 for a MP2x00 US, 737041 for a MP2100D or 747129 for an eMate 300. --machine option can be omitted with a 717006 ROM file. --monitor Run in monitor mode. --ram Set the RAM size in 64 KB increment. 1 will mean 64 KB of RAM. 64 is the default setting (4 MB). The maximum is 255 (nearly 16 MB). 6. Developer notes6.1. Compiling and porting EinsteinThe documentation for obtaining the source code of Einstein, compiling it and porting it is available on Google Code web page: http://code.google.com/p/einstein/. 6.2. CLI commandsThe command line interface is intended for developers and hackers. Using the cli flavor, you will be provided with a prompt. Typing help will provide a small help about the available commands. 6.3 Monitor modeThe monitor mode uses a disassembler from the NetBSD project (the kernel disassembler for the arm32 port). You start in monitor mode by specifying the –monitor option to the command line program. The monitor mode can be considered as an enhanced low-level debugger. The help command displays a short help for the available commands. One of the main advantage of the monitor is that you can set breakpoints. You can also halt the emulator by calling the |Einstein:BreakInMonitor| global function (it doesn’t take any parameter). The following breakpoints are enabled by default:
You cannot use --log option with --monitor because in monitor mode, the log is always enabled. You can save the log to a file (it scrolls on the monitor screen). The monitor mode uses a file with symbols. This file should be named after the ROM file, e.g. 717006.symbols. The syntax is: address <tab> symbol <tab> comment Addresses should be sorted. This file is very easy to generate from the debugger images that are used with Hammer and Newtsbug. Use Newton C++ Tools DumpAIF program with the -s option to dump the list of symbols. Then you can process all the lines with research and replace or sed or awk at your convenience. The symbols can be unmangled with Unmangle tool coming with MPW. 6.4. LoggingQuite a large amount of log lines are generated by Einstein. These are used during the development of Einstein emulator. It also helps to understand what’s going on. Starting with UP2 release, you can generate log lines from NewtonScript calling the |Einstein:Log| global function. E.g.: |Einstein:Log|("Hello World") will display Hello World in the log. If log is disabled, the string will be output on stdout. Please note that your string is converted to ISO-8859-1 before being printed, so non latin characters will not be printed properly in the log. 7. Relativity Developer Guide7.1. IntroductionRelativity is a new technology embedded into Einstein to allow packages for Einstein to take advantage of host APIs. Relativity can only be used through NewtonScript for the moment. To use relativity, you need to call OpenNativeLibrary NewtonScript function to open a library from the host system. OpenNativeLibrary(libraryName) libraryName is a string representing the name of the library to open. Valid names include "libc" or "libGL". This function returns a library object and throws an exception if an error occurs (for example if the library cannot be found). libraryObject:GetFunction(functionSpecs) functionSpecs is a frame describing the function to import. This frame has three required slots :
This function returns a NewtonScript function you can call. The types can be the following:
Some types are illegal for return or argument types (for example, you cannot use iostring for the return type, use string instead). Then, you can call the function naturally by providing Newton data. The result is returned in the form of Newton data. Once you are done, you can close the library with the :Close() method. libraryObject:Close() Close the library. The library object should no longer be used afterwards. 7.2. Sample codeIn this section, we will describe how to call a simple function, gethostname that returns the (network) name of the host. The manual page of gethostname provides the necessary information to call the routine. GETHOSTNAME(3) BSD Library Functions Manual GETHOSTNAME(3) NAME gethostname, sethostname -- get/set name of current host LIBRARY Standard C Library (libc, -lc) SYNOPSIS #include <unistd.h> int gethostname(char *name, size_t namelen); This page shows that gethostname is in the libc library. It also provides the type of the arguments and of the result. The following code calls the function and returns the result. begin // Open the native library. local libc := OpenNativeLibrary("libc"); // Define the function. local gethostnameFn := libc:GetFunction({ name: "gethostname", args: [’iostring, ’sint32], result: ’sint32}); // Allocate a buffer to store the hostname. // This buffer is a string of 127 unicode characters (+ null). local theBuffer := MakeBinary(’string, 256); // Call the function. local theResult := call gethostnameFn with (theBuffer, 127); // Close the library. libc:Close(); // Determine the outcome of the call. if (theResult = 0) then // Success. return theBuffer; else // Failure return "gethostname failed"; end; 8. Known problems
Please report any problem you experienced that is not on this list on the Google Code page (http://code.google.com/p/einstein). 9. Changes History9/07/07 Einstein Platform 2007.7
5/31/06 Einstein Platform 2006.6
1/14/06 Einstein Platform Beta
10. LicenseEinstein Platform is copyright 2003-2007 by Paul Guyot. It is available under the GNU General Public License v2. |
|
|