diff options
author | Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com> | 2016-12-20 21:34:46 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2016-12-22 15:29:37 +0000 |
commit | af4a22aeda5e5dfede3dd3f1a65165ccb5632ce0 (patch) | |
tree | b0833207c9fdb09902a56f46cee78e717d918cef /recipes-kernel/hdm-i2c | |
parent | 6511c88c7e2a515441d22bd583b1386b104b93b5 (diff) |
Support systemd services of MOST for CES2017 Demo
This change is for booting all stuff for MOST automatically
after WindowManager launched.
All services except insmod are in systemd user mode.
Change-Id: I15043493c797511275e4f02173a85f06a7298ca0
Signed-off-by: Tadao Tanikawa <tanikawa.tadao@jp.panasonic.com>
Diffstat (limited to 'recipes-kernel/hdm-i2c')
-rw-r--r-- | recipes-kernel/hdm-i2c/hdm-i2c.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes-kernel/hdm-i2c/hdm-i2c.bb b/recipes-kernel/hdm-i2c/hdm-i2c.bb index b51fe2362..6e51106b2 100644 --- a/recipes-kernel/hdm-i2c/hdm-i2c.bb +++ b/recipes-kernel/hdm-i2c/hdm-i2c.bb @@ -16,3 +16,11 @@ SRCREV = "ad245bdd60434dd46d6461f585d49db1b3b0d75b" # The inherit of module.bbclass will automatically name module packages with # "kernel-module-" prefix as required by the oe-core build environment. + +do_install_append () { + # modprobe automatically at boot + if ${@bb.utils.contains('DISTRO_FEATURES','systemd','true','false',d)}; then + install -d ${D}${sysconfdir}/modules-load.d + echo "hdm_i2c" > ${D}${sysconfdir}/modules-load.d/hdm_i2c.conf + fi +} |