diff options
author | Yusuke Nakamura <ynakamura@jp.adit-jv.com> | 2016-12-28 11:33:45 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2017-01-19 10:59:18 +0000 |
commit | e570e5470c9690e3240a05d3fd2cc0428cce2702 (patch) | |
tree | e3edab354fade881b0df47a09ab19cdd6f387da8 /meta-rcar-gen2/recipes-kernel/linux | |
parent | 94f977531535036e22684ca78dd93d8360d876a2 (diff) |
Add driver loading for cluster demo
v2.0: (Tadao Tanikawa)
Done in the linux-renesas_3.10.bb
v1.0: (Yusuke Nakamura)
Weston in renesas requires some drivers are loaded
in advance for cluster demo. Otherwise weston fails
to start. This adds necessary drivers to /etc/modules-load.d
Change-Id: I0668f663be66b07ce99bb063520b97d2e949b6b6
Signed-off-by: Yusuke Nakamura <ynakamura@jp.adit-jv.com>
Diffstat (limited to 'meta-rcar-gen2/recipes-kernel/linux')
-rw-r--r-- | meta-rcar-gen2/recipes-kernel/linux/linux-renesas_3.10.bb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta-rcar-gen2/recipes-kernel/linux/linux-renesas_3.10.bb b/meta-rcar-gen2/recipes-kernel/linux/linux-renesas_3.10.bb index c61dd42..ffe1ef8 100644 --- a/meta-rcar-gen2/recipes-kernel/linux/linux-renesas_3.10.bb +++ b/meta-rcar-gen2/recipes-kernel/linux/linux-renesas_3.10.bb @@ -170,3 +170,21 @@ KERNEL_DEFCONFIG = "shmobile_defconfig" do_configure_prepend() { install -m 0644 ${S}/arch/${ARCH}/configs/${KERNEL_DEFCONFIG} ${WORKDIR}/defconfig || die "No default configuration for ${MACHINE} / ${KERNEL_DEFCONFIG} available." } + +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 + touch ${D}/${sysconfdir}/modules-load.d/cluster-demo.conf + echo "mmngr" >> ${D}/${sysconfdir}/modules-load.d/cluster-demo.conf + echo "mmngrbuf" >> ${D}/${sysconfdir}/modules-load.d/cluster-demo.conf + echo "uvcs_cmn" >> ${D}/${sysconfdir}/modules-load.d/cluster-demo.conf + echo "s3ctl" >> ${D}/${sysconfdir}/modules-load.d/cluster-demo.conf + echo "vspm" >> ${D}/${sysconfdir}/modules-load.d/cluster-demo.conf + echo "fdpm" >> ${D}/${sysconfdir}/modules-load.d/cluster-demo.conf + fi +} + +FILES_kernel-modules += " \ + ${sysconfdir}/modules-load.d/cluster-demo.conf \ + " |