Skip to content

Everest/ccc: Revision of development chapter #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: everest/charge_control_c
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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
101 changes: 70 additions & 31 deletions docs/source/development.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,110 +4,149 @@

.. _cross_compiling:

Cross-compiling
===============
Cross-compilation of EVerest modules
====================================

Another way to integrate custom applications into the firmware image is to cross-compile the application
for Tarragon and include it in the image. A pre-requisite for this is to have the latest firmware image
as a developer build. Always keep in mind, if you want to build a new EVerest module it must be
compatible to the EVerest release within the firmware. Please have a look at the official
`EVerest documentation <https://everest.github.io/nightly/dev_tools/edm.html#setting-up-and-updating-a-workspace>`_,
how to checkout a dedicated EVerest release.
Cross-compilation is the fastest and most convenient way to test your own modules directly on the target system during development.
The cross-compiled project can then either be transferred directly via FTP to the charge controller or
integrated into a firmware image and installed on the target using the `rauc` command.

#. On an Ubuntu or Debian-based Linux distribution, install the cross-compilers for Tarragon.
The following steps describe how to cross-compile a module for the Tarragon platform.

#. On an Ubuntu or Debian-based Linux distribution, install the cross-compilers for Tarragon:

.. code-block:: console

sudo apt install build-essential libc6-armhf-cross libc6-dev-armhf-cross binutils-arm-linux-gnueabihf gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf

#. Download chargebyte's `digital certificate <https://chargebyte.com/controllers-and-modules/evse-controllers/charge-control-c#downloads>`_
and use it to extract the root filesystem from the firmware image.
and use it to extract the root filesystem from the firmware image:

.. code-block:: console

rauc extract --keyring=<chargebyte_certificate>.crt <shipped_firmware>.image bundle-staging

.. note::
Alternatively, if the above command does not work, you can use the following command:

.. code-block:: console

unsquashfs -d bundle-staging <shipped_firmware>.image

But this will not verify the signature of the firmware image.
However, this will not verify the signature of the firmware image.

#. Mount the ext4 root filesystem image as a loop device.
#. Mount the extracted ext4 root filesystem image as a loop device:

.. code-block:: console

sudo mkdir -p /mnt/rootfs
sudo mount bundle-staging/core-image-minimal-tarragon.ext4 /mnt/rootfs

#. Create a new directory in the folder where the new module was created (my-module) and create a new
file called :code:`toolchain.cmake`. This file is used to set the toolchain for the cross-compilation.
#. Create a new directory in your `everest-workspace` directory (in parallel to the `everest-core` directory) and
create a new file named :code:`toolchain.cmake`:

.. code-block:: console

cd my-module
cd everest-workspace
mkdir toolchain
cd toolchain
touch toolchain.cmake
cd ..

#. The resulting directory structure should look like this:

.. code-block:: console

everest-workspace/
|── {MyEVerestModule}
├── everest-core
└── toolchain
└── toolchain.cmake

#. Store the following lines in the :code:`toolchain.cmake` file:
#. Save the following content in the :code:`toolchain.cmake` file:

.. literalinclude:: ../../includes/_static/files/toolchain.cmake

#. Create a new :code:`build` directory in "my-module" and navigate to it.
#. Create a new :code:`build_tarragon` directory in the EVerest project directory (e.g. within your own EVerest
module project directory or :code:`everest-core` if you want to build the everest-core modules):

.. code-block:: console

mkdir build
cd build
cd {MyEVerestModule}
mkdir build_tarragon
cd build_tarragon

#. Run the following command inside to configure the build.
#. Run the following command inside the `build_tarragon` directory to configure the build:

.. code-block:: console

cmake -DCMAKE_TOOLCHAIN_FILE=../toolchain/toolchain.cmake -DCMAKE_SYSROOT=/mnt/rootfs ..
cmake -DCMAKE_TOOLCHAIN_FILE=../../toolchain/toolchain.cmake -DCMAKE_SYSROOT=/mnt/rootfs ..
Copy link
Contributor

Choose a reason for hiding this comment

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

Are you sure you need ../.. now?

Copy link
Contributor Author

@FaHaGit FaHaGit Jun 17, 2025

Choose a reason for hiding this comment

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

now the toolchain file is located in "/everest-workspace" before it was in the module directory of the customer EVerest project ("/everest_workspace/my_module/"). I think it is correct.

Copy link
Contributor

Choose a reason for hiding this comment

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

At this point, I hope that the user sticks to the common EVerest directory structure (with modules/MyModule/, interfaces/, types/). Is that noted somewhere in the prerequisites for development?


#. When this ends successfully, start cross-compiling using :code:`make`:
#. When this completes successfully, start cross-compiling using :code:`make`:

.. code-block:: console

make install -j$(nproc)
Copy link
Contributor

Choose a reason for hiding this comment

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

Perhaps note that this will first compile, and then install under dist/, if successful.


#. Test that the resulting binaries are compiled for Tarragon as a target:
#. If the build was successful, a dist directory will be created with the cross-compiled binaries and
the manifest files of the modules. Please check if the following directory structure was created:

.. code-block:: console

dist/
└── libexec
└── everest
└── modules
└── {MyEVerestModule}
├── {MyEVerestModule} (binary)
└── {MyEVerestModule}.manifest (manifest file)

#. Verify that the resulting binaries were compiled for the Tarragon target platform:

.. code-block:: console

file dist/libexec/everest/modules/MyModule/MyModule
file dist/libexec/everest/modules/{MyEVerestModule}/{MyEVerestModule}

The output should be something like:

.. code-block:: console

dist/libexec/everest/modules/MyModule/MyModule: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (GNU/Linux),
dist/libexec/everest/modules/{MyEVerestModule}/{MyEVerestModule}: ELF 32-bit LSB shared object, ARM, EABI5 version 1 (GNU/Linux),
dynamically linked, interpreter /lib/ld-linux-armhf.so.3, BuildID[sha1]=9f287c2dbdcacd9ecde770df4820de9218deb439, for GNU/Linux 3.2.0, not stripped

#. The resulting binary and manifest file can be copied to the previously mounted root filesystem.
The resulting binary and manifest can be found in the :code:`dist/libexec/everest/modules/{MyEVerestModule}`
directory. If you want to test the module on the target system, you can copy the module directory using
:code:`scp` or :code:`rsync`:

.. code-block:: console

scp -r dist/libexec/everest/modules/{MyEVerestModule} root@<ip_address>:/usr/libexec/everest/modules/

To include the new module in a firmware image, copy the module directory into the mounted root filesystem:

.. code-block:: console

cp dist/libexec/everest/modules/MyModule /mnt/rootfs/usr/libexec/everest/modules/
cp -r dist/libexec/everest/modules/{MyEVerestModule} /mnt/rootfs/usr/libexec/everest/modules/

#. umount the loop device.
#. Unmount the loop device:

.. code-block:: console

sudo umount /mnt/rootfs

#. Make sure that the customized filesystem is in a clean state.
#. Ensure that the modified filesystem is in a clean state:

.. code-block:: console

fsck.ext4 -f bundle-staging/core-image-minimal-tarragon.ext4

#. Follow the steps under the section :ref:`firmware_customization` to install your PKI certificate, pack
the modified root filesystem image again into the firmware update image, and test the new firmware image.
Follow the steps under the section :ref:`firmware_customization` to install your PKI certificate, repackage
the modified root filesystem into a firmware update image, and test the new firmware.

.. _creating_fw_images:

.. include:: ../../includes/development_creating_fw_images.inc

.. _debugging_and_logging:

.. include:: ../../includes/development_debugging_and_logging.inc
Loading