You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,12 +19,12 @@ How to use it?
19
19
#. Run ``src/make_custom_pi_os -g <distro folder>`` in the repo, distro folder should not exist and contain no spaces. This will both create a folder to build a new distro from, and also download the latest raspbian lite image. The initial distro has a module that has the name of your distro, and you can find it under ``<distro folder>/src/modules/<distro name>`` (there should be only one module in the modules folder).
20
20
#. cd to ``<distro folder>/src``
21
21
#. Edit your ``<distro folder>/src/config``, you can also edit the starting module, which is named as your distro at ``modules/<dstro name>``. More on that in the Developing section.
22
-
#. Run ``<distro folder>/src/build_dist`` to build an image. If this failes use the method discribed in the vagrant build the section (which makes sure sfdisk and other things work right).
22
+
#. Run ``<distro folder>/src/build_dist`` to build an image. If this fails use the method described in the vagrant build section (which makes sure sfdisk and other things work right).
23
23
24
24
Features
25
25
--------
26
26
27
-
* Modules - write one module and use if for multiple distros
27
+
* Modules - write one module and use it for multiple distros
28
28
* Write only the code you need for your distro - no need to maintain complicated stuff like building kernels unless its actually want to do it
29
29
* Standard modules give extra functionality out of the box
30
30
* Supports over 40 embedded devices using `Armbian <http://armbian.com/>`_ and Raspbian.
@@ -48,7 +48,7 @@ Requirements
48
48
Known to work building configurations
49
49
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
50
50
1. Linux (Ubuntu / Debian etc)
51
-
2. OS X - `See this tread for information <https://github.com/guysoft/OctoPi/issues/388#issuecomment-316327106>`_
51
+
2. OS X - `See this thread for information <https://github.com/guysoft/OctoPi/issues/388#issuecomment-316327106>`_
52
52
53
53
54
54
Modules
@@ -127,7 +127,7 @@ Building Using Vagrant
127
127
Usage
128
128
~~~~~
129
129
130
-
#. If needed, override existing config settings by creating a new file ``src/config.local``. You can override all settings found in ``src/config``. If you need to override the path to the Raspbian image to use for building yoru dstro, override the path to be used in ``BASE_ZIP_IMG``, which is part of the base module. By default the most recent file matching ``*-raspbian.zip`` found in ``src/image`` will be used.
130
+
#. If needed, override existing config settings by creating a new file ``src/config.local``. You can override all settings found in ``src/config``. If you need to override the path to the Raspbian image to use for building your distro, override the path to be used in ``BASE_ZIP_IMG``, which is part of the base module. By default the most recent file matching ``*-raspbian.zip`` found in ``src/image`` will be used.
131
131
#. Run ``src/build`` as root.
132
132
#. The final image will be created at the ``src/workspace``
0 commit comments