Table of Contents | ||||
---|---|---|---|---|
|
...
Starting from the Dunfell release of Linux Yocto, SECO Northern Europe devices no longer support a dynamic change of device configuration (e.g. display or touch settings) via xml file with the xconfig script. Initial device configurations need to be made before OS installation and will be attached permanently to that installation. Further changes down the line require a new installation of the OS.
...
The process of booting into the Flash-N-Go System is described in the chapter [Deploying the Linux system to the target]. Within Flash-N-Go System, the xconfig script can be called to modify the device configuration.
Expand | ||||||||
---|---|---|---|---|---|---|---|---|
| ||||||||
Calling xconfig to show available option:
List the installed configuration of the device:
Delete the existing display config:
Import an xml configuration file, in this example a display config located in /mnt/mstick1/:
|
More detail about Flash-N-Go infrastructure can be found here.
SECO Northern Europe system configuration
...
As with xconfig, sconfig also no longer support dynamic changes of configuration in the target OS. A new OS installation is required for the new setting to take effect.
Some parts of the system configuration are stored in an xml file stored on one of the boot partitions of the eMMC. This information is shared between the backup OS Flash-N-Go System and the main OS, but also persistent between normal OS installations.
The shared information is stored in an xml file called config.xml, found in /etc/shared. For this purpose, there is a link to the script at /usr/sbin/sconfig which can be called without the absolute path:
...
Call without parameter to show the list of current configurations on the system. Call with -h to show additional help.
If the script is called with a setting as parameter, the setting is read from the XML configuration and displayed on the console.
...
Code Block |
---|
root@santaro:~# sconfig gateway 192.168.1.10 root@santaro:~# sconfig gateway 192.168.1.10 |
The ’name’ set with sconfig is also used as hostname for the device. It defaults to GFMM<serial number>.
Network configuration
...
The Network Manager service is responsible for initializing all network interfaces at system startup and when an ethernet cable or a WLAN stick is plugged in.
The Network Manager stores its config files in the /etc/NetworkManager directory. Normally there is no need to change those files directly as there are some tools available to configure the network.
More information about Network Manager can be found here.
WLAN
...
While SANTOKA has a built-in WLAN module, all other SECO Northern Europe products support WLAN using WLAN USB dongles. A list of supported devices can be found in the BSP release notes. WLAN can be used as client or provide an own network as Access Point.
Network management is done through nmcli, which is a command-line client for the Network Manager and reporting network status. A detail explanation of nmcli usage can be found here and here.
...
Expand | ||||||
---|---|---|---|---|---|---|
| ||||||
Scan for nearby networks:
Note the name of networks listed under the column SSID, to connect a desired network:
Once successfully connected, test the connection with ping:
Network Manager will save the connection and auto-connect on reboot, so you don't have to worry about issuing the command every time the device is booted. |
...
Expand | ||||
---|---|---|---|---|
| ||||
To setup a WLAN Access point with own sub network including a DHCP service using the Network Manager use following commands:
This creates a “test” network with the password “secret_passphrase”. The connection to identify this setup in the Network Manager is called Hotspot. This kind of WLAN access point assigns each client an own IP Address in its own sub net, starting with 10.42.0.1 by default. Accesses to the internet over an ethernet connection are using NAT (network address translation). This way the clients are not visible from the ethernet. To remove this connection use:
|
...
The init system changed from System V to systemd. This means that all scripts in /etc/init.d are gone and replaced by systemd units. systemd uses so-called unit-files to configure services to start and stop. The tool systemctl is the main userspace tool to control these if needed.
...
Expand | ||||||
---|---|---|---|---|---|---|
| Disable ||||||
By default a demo will be launched at startup: To disable the demo from startup
Create the service file for qt-kiosk-browser and add code in the file
Enable the qt-kiosk-browser service and reboot the device
The browser will load automatically after reboot. |
...
The hardware watchdog device on SECO Northern Europe devices is capable to execute a hardware reset when not triggered in time. The device node for the hardware watchdog is /dev/watchdog.
The watchdog service is able to monitor different system parameters, like the system load, and can take different actions if any system parameter is out of a defined range. Those repair actions can be simple cleanup scripts or the execution of a reboot or shutdown.
...
Expand | ||||
---|---|---|---|---|
| ||||
The file /etc/systemd/system.conf contains option to configure the watchdog logic.
Default value of 0 means watchdog is disabled, set to a value (e.g. 20s) to reboot the system after there is no keep-alive ping during the given interval.
Further configuration to watchdog timing at reboot, shutdown, and by kexec, respectively. |
...
The common Unix/Linux utilities to shutdown the system behave accordingly:
reboot: will stop all login-services, stop all running applications, flush all caches, unmount all filesystems and safely reboot the system.
halt: will stop all login-services, stop all running applications, flush all caches, unmount all filesystems and just "halt" the system, so that a user may safely disconnect the power-supply without risking any data-loss.
poweroff: according to Unix/Linux conventions for systems that cannot turn-off themselves, will do just the same as halt.
This means, as per Linux/Unix convention for systems that can’t turn-off themselves, none of these commands will turn-off device power; not even the display power. The halt and poweroff commands will only ensure that the system is put in a state, where no user-processes are running anymore and all data has been written back to storage media.
...
Note |
---|
Be careful changing the command line, as it can easily break the booting process of your device. If booting fails after those changes, you will need to boot into Flash-N-Go System and correct the settings. In this case, please refer to the Flash-N-Go infrastructure manual. |
Expand | ||||||
---|---|---|---|---|---|---|
| ||||||
To change the kernel command line, the boot partition needs to be mounted:
Open the boot configurator file to edit:
The boot configuration normally looks similar to this:
The last line is the kernel command line. Options can be added to the end. |
...
By default SECO Northern Europe devices come with the SECO logo as the boot logo at startup. If this is not desired by the customer, the logo can be disabled by adding the parameter “logo.nologo” to the Kernel command line as described above.
Expand | ||
---|---|---|
| ||
Edit the boot.cfg file as shown (adding logo.nologo to the last line):
|
...
By default the system time is automatically synced from an NTP Server and user should not need to do any change. However, it is possible to set a custom time for the system using the command timedatectl.
Expand | ||||
---|---|---|---|---|
| ||||
Calling timedatectl will report the current time
To change the time of the device, first NTP Synchronisation must be disabled, then time can be set with the parameter set-time
To use a different NTP server, the config file /etc/systimed/timesyncd.conf can be modified. |
...
SECO Northern Europe devices can automatically load customized drivers (module) on boot with the help of systemd. The systemd-modules-load.service is responsible for external module loading on system startup. Users can customize this service to integrate their own driver to the system.
Expand | ||||||
---|---|---|---|---|---|---|
| ||||||
First check if systemd-modules-load.service is activated:
Create the config file in /etc/modules-load.d/:
Edit the file to only contain the module name:
Next time the system reboots, the module will be automatically loaded. |