-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
66 lines (45 loc) · 1.77 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
PTXdist
=======
Installation
------------
To install PTXdist, just run
./configure --prefix=<installpath>
to configure the packet, then
make
to build everything and
make install
to install it. When you start using PTXdist, make sure your $PATH
environment variable points to <installpath>/bin, because that's where
the PTXdist frontend program is being installed to.
For developers who want to work with git versions of PTXdist it is only
necessary to run "./autogen.sh && ./configure && make" and set the PATH
variable to the bin/ directory inside the PTXdist tree.
Idea
----
PTXdist is a build system which can be used to generate a root tree and
disk images for all kinds of Linux systems. It was written with embedded
systems in mind, but there is no reason why you can't use it to
configure your firewall, router or whatever dedicated "device" comes to
your mind.
The job works like this: you run 'ptxdist menuconfig' and
'ptxdist platformconfig', configure what you need. Run 'ptxdist images'
and you'll find a root tree in ./platform-<name>/root/, and disk images
in ./platform-<name>/images/. Voilà.
All magic necessary to do these things in a cross enviroment are written
into "recipes", living in rules/*.make, and config menues in
rules/*.in.
Contributing
------------
See doc/contributing.rst for the contribution guidelines.
Documentation
-------------
See <https://www.ptxdist.org/doc/> for the full documentation, which
includes a quickstart guide as well as a reference for users and
developers.
You can also find the documentation in reStructuredText form in the doc/
directory inside this PTXdist tree, which you can build into HTML with
./bin/ptxdist docs-html
The generated HTML documents will be created in Documentation/html/.
Bugs
----
- search for FIXMEs