X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=recipes-kernel%2Fhdm-i2c%2Fhdm-i2c.bb;h=6e51106b2863cc7e7f80c0f55782286dc4f1760d;hb=af4a22aeda5e5dfede3dd3f1a65165ccb5632ce0;hp=b51fe2362671a32a8cdd498ab4631cfb4376257d;hpb=6511c88c7e2a515441d22bd583b1386b104b93b5;p=AGL%2Fmeta-agl-demo.git 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 +}