diff options
Diffstat (limited to 'conf')
-rw-r--r-- | conf/include/bblayers/sota_raspberrypi3.inc | 1 | ||||
-rw-r--r-- | conf/local.conf.sample.append | 35 |
2 files changed, 36 insertions, 0 deletions
diff --git a/conf/include/bblayers/sota_raspberrypi3.inc b/conf/include/bblayers/sota_raspberrypi3.inc index 03f8f44..42d5eb1 100644 --- a/conf/include/bblayers/sota_raspberrypi3.inc +++ b/conf/include/bblayers/sota_raspberrypi3.inc | |||
@@ -1,3 +1,4 @@ | |||
1 | BBLAYERS += "${METADIR}/meta-openembedded/meta-python" | 1 | BBLAYERS += "${METADIR}/meta-openembedded/meta-python" |
2 | BBLAYERS += "${METADIR}/meta-updater-raspberrypi" | 2 | BBLAYERS += "${METADIR}/meta-updater-raspberrypi" |
3 | BBLAYERS += "${METADIR}/meta-raspberrypi" | 3 | BBLAYERS += "${METADIR}/meta-raspberrypi" |
4 | BBLAYERS += "${METADIR}/meta-openembedded/meta-networking" | ||
diff --git a/conf/local.conf.sample.append b/conf/local.conf.sample.append new file mode 100644 index 0000000..4588ec3 --- /dev/null +++ b/conf/local.conf.sample.append | |||
@@ -0,0 +1,35 @@ | |||
1 | |||
2 | # | ||
3 | # meta-updater configuration, see README.adoc and aktualizr's | ||
4 | # documentation for more options and detailed documentation | ||
5 | # | ||
6 | |||
7 | MACHINE = "##MACHINE##" | ||
8 | DISTRO = "poky-sota-systemd" | ||
9 | |||
10 | # General SOTA setup | ||
11 | #SOTA_CLIENT_PROV = "aktualizr-auto-prov" | ||
12 | #SOTA_PACKED_CREDENTIALS = "/path/to/credentials.zip" | ||
13 | |||
14 | # Uncomment this line to start an ssh server at boot automatically | ||
15 | #IMAGE_FEATURES += "ssh-server-dropbear" | ||
16 | |||
17 | # Uncomment this line to set the log level of aktualizr to 'debug' (from 'info' | ||
18 | # by default) | ||
19 | #IMAGE_INSTALL_append += " aktualizr-log-debug" | ||
20 | |||
21 | # Store systemd logs in persistent storage | ||
22 | # | ||
23 | # It greatly helps diagnosing issues on testing devices but should be | ||
24 | # carefully weighted against file system usage and flash device wear for | ||
25 | # production systems. Please refer to systemd's docs for more details | ||
26 | IMAGE_INSTALL_append += " systemd-journald-persistent" | ||
27 | |||
28 | # Set resource limits for aktualizr service | ||
29 | # | ||
30 | # Uncomment these lines to change the default parameters. | ||
31 | # | ||
32 | #RESOURCE_CPU_WEIGHT_pn-aktualizr = "100" | ||
33 | #RESOURCE_MEMORY_HIGH_pn-aktualizr = "100M" | ||
34 | #RESOURCE_MEMORY_MAX_pn-aktualizr = "80%" | ||
35 | IMAGE_INSTALL_append += " aktualizr-resource-control" | ||