Mercurial > lcfOS
annotate readme.rst @ 376:1e951e71d3f1
Change to readme
author | Windel Bouwman |
---|---|
date | Tue, 25 Mar 2014 19:36:51 +0100 |
parents | 899ae3aea803 |
children | 9667d78ba79e |
rev | line source |
---|---|
187 | 1 |
273 | 2 About |
3 ===== | |
4 | |
5 Project goals | |
6 ------------- | |
7 | |
283 | 8 * To write a microkernel based OS |
9 * Write the kernel in the c3 language | |
10 * Create a c3 compiler in python | |
9
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
11 |
273 | 12 Directory structure |
13 ------------------- | |
188 | 14 |
283 | 15 'kernel' contains the microkernel. |
16 'python' contains the python utilities. | |
9
92ace1ca50a8
64 bits kernel without interrupts but with printf in C
windel
parents:
1
diff
changeset
|
17 |
376 | 18 |
19 How to run this? | |
20 ---------------- | |
21 | |
22 Install required software: | |
283 | 23 |
300 | 24 * python3.3 |
332 | 25 * pyyaml for yaml module |
283 | 26 * (optional) pyqt5, pyqt4 or pyside |
1 | 27 |
376 | 28 Checkout the code: |
1 | 29 |
290 | 30 .. code:: bash |
31 | |
376 | 32 hg clone https://bitbucket.org/windel/lcfos |
33 cd lcfos | |
34 | |
35 Run some unit tests: | |
36 | |
37 .. code:: bash | |
38 | |
39 cd test | |
40 python3 run_tests.py | |
256 | 41 |
298 | 42 |
376 | 43 Weblinks |
44 -------- | |
45 | |
46 Docs are located here: | |
47 http://lcfos.readthedocs.org/en/latest/ | |
318 | 48 |
49 Sources are located here: | |
50 https://bitbucket.org/windel/lcfos | |
51 | |
376 | 52 here: |
53 http://hg.assembla.com/lcfOS/ | |
298 | 54 |
376 | 55 and here: |
56 https://pikacode.com/windel/lcfos/ | |
290 | 57 |
298 | 58 |
300 | 59 The project is contains tests which are run continuously at drone.io. |
60 | |
273 | 61 .. image:: https://drone.io/bitbucket.org/windel/lcfos/status.png |
283 | 62 |
352 | 63 https://drone.io/bitbucket.org/windel/lcfos |
64 | |
65 Repository metrics: | |
66 | |
290 | 67 .. image:: https://www.ohloh.net/p/lcfos/widgets/project_thin_badge.gif |
43 | 68 |
352 | 69 http://www.ohloh.net/p/lcfos |
70 | |
41 | 71 |