Go to file
Mr Jenkins b264b24e82 Release 1.2.4: updating layers, source revisions and distro version 2021-05-04 22:31:25 +02:00
bitbake@017a39ed05 Release 1.2.4: updating layers, source revisions and distro version 2021-05-04 22:31:25 +02:00
build/conf Release 1.2.4: updating layers, source revisions and distro version 2021-05-04 22:31:25 +02:00
meta-netmodule-bsp@0f78b1b8e5 Release 1.2.4: updating layers, source revisions and distro version 2021-05-04 22:31:25 +02:00
meta-netmodule-distro@719b0a2fde Release 1.2.4: updating layers, source revisions and distro version 2021-05-04 22:31:25 +02:00
meta-netmodule-wlan@ab04a2ac66 Release 1.2.3: updating layers and revisions 2021-04-13 12:09:00 +02:00
meta-openembedded@c1a5068322 Release 1.2.4: updating layers, source revisions and distro version 2021-05-04 22:31:25 +02:00
meta-updater@5d49b28570 Release 1.2.3 2021-04-08 09:35:46 +02:00
openembedded-core@2cc9e06807 Release 1.2.4: updating layers, source revisions and distro version 2021-05-04 22:31:25 +02:00
.gitignore Adding base layers and configurations 2020-12-21 09:46:50 +01:00
.gitmodules Release 1.1.5 2021-01-26 11:42:40 +01:00
README.md Add instruction for submodules 2020-12-21 12:10:27 +01:00
env.common Adding base layers and configurations 2020-12-21 09:46:50 +01:00
env.image Adding base layers and configurations 2020-12-21 09:46:50 +01:00
env.image-minimal Adding base layers and configurations 2020-12-21 09:46:50 +01:00
env.image-ostree Adding base layers and configurations 2020-12-21 09:46:50 +01:00
machine_select Adding base layers and configurations 2020-12-21 09:46:50 +01:00

README.md

NetModule OEM Linux

The purpose of this repository is to provide a base or a template for customers to build their own distribution based on the NetModule OEM Linux distribution.

The submodules and source revisions are frozen to match the latest release.

Initial steps

Before building anything, it is required to get all the submodules. This is done with the following commands:

git submodule init
git submodule update

Selecting hardware target

The hardware target can be selected by sourcing the machine_select script:

source machine_select
8  # Selecting NG800

Building an image

This distribution provides three images:

  1. The minimal image
  2. The "release" image
  3. The development image

The minimal image

It is a initramfs image which can be loaded from the bootloader. It gives access to basic linux functionalities and allows to flash other images.

It can be built with the following commands:

source env.image-minimal
bitbake virtual/netmodule-image

The "release" image

This is the default image providing all functionalities of the system.

It can be build with the following commands:

source env.image-ostree
bitbake netmodule-linux-image

The development image

This is the default image extended with development and debugging tools.

It can be build with the following commands:

source env.image-ostree
bitbake netmodule-linux-image-dev