diff options
Diffstat (limited to 'recipes-kernel/aim-sound')
-rw-r--r-- | recipes-kernel/aim-sound/aim-sound.bb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/recipes-kernel/aim-sound/aim-sound.bb b/recipes-kernel/aim-sound/aim-sound.bb index b51fe2362..02d790770 100644 --- a/recipes-kernel/aim-sound/aim-sound.bb +++ b/recipes-kernel/aim-sound/aim-sound.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 "aim_sound" > ${D}${sysconfdir}/modules-load.d/aim_sound.conf + fi +} |