Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion debian/README.source
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ Steps

6a. build Debian package if in doubt - optional

dpkg-buildpackage
dpkg-buildpackage -rfakeroot

6b. build Debian source package, which is what is uploaded to Debian upon acceptance and for updates

Expand Down
23 changes: 15 additions & 8 deletions docs/src/code/building-linuxcnc.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,7 @@ The first step is generating the Debian package scripts and meta-data
from the git repo by running this:

-----
> cd linuxcnc-dev/debian
> ./configure uspace
> cd ..
> ./debian/configure uspace
-----

[NOTE]
Expand All @@ -249,7 +247,7 @@ package by running `dpkg-buildpackage` (note that it needs to run from
the `linuxcnc-dev` directory, *not* from `linuxcnc-dev/debian`):

-----
> dpkg-buildpackage -b -uc
> dpkg-buildpackage -rfakeroot -b -uc
-----


Expand All @@ -265,7 +263,10 @@ platform to build for. The normal values for this argument are:
`uspace`::

Configure the Debian package for Preempt-RT realtime or for
non-realtime (these two are compatible).
non-realtime (these two are compatible). uspace is the default if no
other realtime configuration is selected.

The Debian package created will be linuxcnc-uspace.

`noauto`::
`rtai`::
Expand All @@ -291,6 +292,14 @@ platform to build for. The normal values for this argument are:
You must be running an RTAI kernel on your build machine for this
to work!

`--help`::

presets a very short summary of extra options
Copy link
Collaborator

@SebKuzminsky SebKuzminsky Nov 12, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Typo - should be "Presents".

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done. It unfortunately took me another iteration to recognize that the sentence should start with a capital letter. Also fixed for the following section.


`no-docs`::

skips building of documentation

`$KERNEL_VERSION`::

Configure the debian package for the specified RTAI kernel version
Expand Down Expand Up @@ -326,9 +335,7 @@ Then ask your LinuxCNC git checkout to generate its Debian package
meta-data:

-----
> cd linuxcnc-dev/debian
> ./configure uspace
> cd ..
> ./debian/configure uspace
-----

Finally ask `dpkg-checkbuilddeps` to do its job (note that it needs to
Expand Down
6 changes: 2 additions & 4 deletions docs/src/code/building-linuxcnc_es.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,7 @@ El primer paso es generar los scripts y metadatos del paquete Debian
desde su clon del repositorio git ejecutando esto:

-----
> cd linuxcnc-dev/debian
> ./configure uspace
> cd ..
> ./debian/configure uspace
-----

[NOTE]
Expand All @@ -242,7 +240,7 @@ paquete ejecutando `dpkg-buildpackage` (tenga en cuenta que debe ejecutarse desd
el directorio `linuxcnc-dev`, *no* desde `linuxcnc-dev/debian`):

-----
> dpkg-buildpackage -b -uc
> dpkg-buildpackage -rfakeroot -b -uc
-----


Expand Down