* lm-sensors not available as a package? @ 2012-10-16 16:00 Jonathan Haws 2012-10-16 16:06 ` Paul Eggleton 0 siblings, 1 reply; 8+ messages in thread From: Jonathan Haws @ 2012-10-16 16:00 UTC (permalink / raw) To: yocto@yoctoproject.org I would be surprised if a recipe for lm-sensors has not already been created, however I cannot find one. Can someone point me in the right direction? All I can find is a sysstat package that I can include via IMAGE_INSTALL_append, however I cannot see how I can get the same information out of it that lm-sensors gives me. Has anyone got lm-sensors included in their image? If so, can you share the recipe? Thanks! Jonathan ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: lm-sensors not available as a package? 2012-10-16 16:00 lm-sensors not available as a package? Jonathan Haws @ 2012-10-16 16:06 ` Paul Eggleton 2012-10-16 17:37 ` Marc Ferland 2012-10-16 18:20 ` Marc Ferland 0 siblings, 2 replies; 8+ messages in thread From: Paul Eggleton @ 2012-10-16 16:06 UTC (permalink / raw) To: Jonathan Haws; +Cc: yocto On Tuesday 16 October 2012 16:00:01 Jonathan Haws wrote: > I would be surprised if a recipe for lm-sensors has not already been > created, however I cannot find one. Can someone point me in the right > direction? > > All I can find is a sysstat package that I can include via > IMAGE_INSTALL_append, however I cannot see how I can get the same > information out of it that lm-sensors gives me. > > Has anyone got lm-sensors included in their image? If so, can you share the > recipe? Unless anyone else pipes up, my local index suggests that this is something that hasn't yet been brought up-to-date from OE-Classic. http://git.openembedded.org/openembedded/tree/recipes/lm_sensors Assuming nothing else is available you should be able to use this as a base. There is a brief guide on the main things that need to be changed when updating a recipe from OE-Classic here: http://www.openembedded.org/wiki/Migrating_metadata_to_OE-Core If you do come up with an updated recipe we'd love to have it added to meta-oe or some other layer ;) Cheers, Paul -- Paul Eggleton Intel Open Source Technology Centre ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: lm-sensors not available as a package? 2012-10-16 16:06 ` Paul Eggleton @ 2012-10-16 17:37 ` Marc Ferland 2012-10-16 17:53 ` Jonathan Haws 2012-10-16 18:20 ` Marc Ferland 1 sibling, 1 reply; 8+ messages in thread From: Marc Ferland @ 2012-10-16 17:37 UTC (permalink / raw) To: yocto Paul Eggleton <paul.eggleton@linux.intel.com> writes: > On Tuesday 16 October 2012 16:00:01 Jonathan Haws wrote: >> I would be surprised if a recipe for lm-sensors has not already been >> created, however I cannot find one. Can someone point me in the right >> direction? >> >> All I can find is a sysstat package that I can include via >> IMAGE_INSTALL_append, however I cannot see how I can get the same >> information out of it that lm-sensors gives me. >> >> Has anyone got lm-sensors included in their image? If so, can you share the >> recipe? > > Unless anyone else pipes up, my local index suggests that this is something > that hasn't yet been brought up-to-date from OE-Classic. > > http://git.openembedded.org/openembedded/tree/recipes/lm_sensors > > Assuming nothing else is available you should be able to use this as a base. > There is a brief guide on the main things that need to be changed when > updating a recipe from OE-Classic here: > > http://www.openembedded.org/wiki/Migrating_metadata_to_OE-Core > > If you do come up with an updated recipe we'd love to have it added to meta-oe > or some other layer ;) > I have a lmsensors recipe somewhere around here. I'll dust it off and post it to the oe-core mailing list. Marc ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: lm-sensors not available as a package? 2012-10-16 17:37 ` Marc Ferland @ 2012-10-16 17:53 ` Jonathan Haws 2012-10-16 18:27 ` Marc Ferland 0 siblings, 1 reply; 8+ messages in thread From: Jonathan Haws @ 2012-10-16 17:53 UTC (permalink / raw) To: Marc Ferland, yocto@yoctoproject.org I got the oe-classic recipe building with the latest version of lm-sensors. However, I am now running into perl issues - when I try to run sensors-detect, I get errors with the @INC paths - strict.pm is not found anywhere on the filesystem. I went back to see if I had left out perl support, but it was present and included. Where is strict.pm? How can I get that in my image? Thanks! FYI, here is what the recipe looks like. It still gives a man page warning, but I am ignoring that for now. ------------------------------------------------------------------------------------------------------------------------------------------------------------ DESCRIPTION = "Hardware health monitoring applications" HOMEPAGE = "http://www.lm-sensors.org/" DEPENDS = "sysfsutils virtual/libiconv" LICENSE = "GPLv2" PR = "r1" DEPENDS = "bison-native flex-native" PACKAGE_ARCH = "${MACHINE_ARCH}" SRC_URI = "http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${PV}.tar.bz2" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ file://COPYING.LGPL;md5=4fbd65380cdd255951079008b364516c \ " SRC_URI[md5sum] = "f357ba00b080ab102a170f7bf8bb2578" SRC_URI[sha256sum] = "f13dd885406841a7352ccfb8b9ccb23c4c057abe3de4258da5444c149a9e3ae1" S = "${WORKDIR}/lm_sensors-${PV}" EXTRA_OEMAKE = 'LINUX=${STAGING_KERNEL_DIR} EXLDFLAGS="${LDFLAGS}" \ MACHINE=${TARGET_ARCH} PREFIX=${prefix} CC="${CC}" AR="${AR}"' do_compile() { oe_runmake user PROG_EXTRA=sensors } do_install() { oe_runmake user_install DESTDIR=${D} } PACKAGES =+ "lmsensors-sensors lmsensors-sensors-dbg" PACKAGES =+ "lmsensors-scripts" FILES_lmsensors-scripts = "${bindir}/*.pl ${bindir}/ddcmon ${sbindir}/fancontrol* ${sbindir}/pwmconfig ${sbindir}/sensors-detect" RDEPENDS_lmsensors-scripts += "lmsensors-sensors perl bash" FILES_lmsensors-sensors = "${bindir}/sensors ${sysconfdir}" FILES_lmsensors-sensors-dbg += "${bindir}/.debug/sensors" ------------------------------------------------------------------------------------------------------------------------------------------------------------ ________________________________________ From: yocto-bounces@yoctoproject.org [yocto-bounces@yoctoproject.org] on behalf of Marc Ferland [ferlandm@sonatest.com] Sent: Tuesday, October 16, 2012 11:37 To: yocto@yoctoproject.org Subject: Re: [yocto] lm-sensors not available as a package? Paul Eggleton <paul.eggleton@linux.intel.com> writes: > On Tuesday 16 October 2012 16:00:01 Jonathan Haws wrote: >> I would be surprised if a recipe for lm-sensors has not already been >> created, however I cannot find one. Can someone point me in the right >> direction? >> >> All I can find is a sysstat package that I can include via >> IMAGE_INSTALL_append, however I cannot see how I can get the same >> information out of it that lm-sensors gives me. >> >> Has anyone got lm-sensors included in their image? If so, can you share the >> recipe? > > Unless anyone else pipes up, my local index suggests that this is something > that hasn't yet been brought up-to-date from OE-Classic. > > http://git.openembedded.org/openembedded/tree/recipes/lm_sensors > > Assuming nothing else is available you should be able to use this as a base. > There is a brief guide on the main things that need to be changed when > updating a recipe from OE-Classic here: > > http://www.openembedded.org/wiki/Migrating_metadata_to_OE-Core > > If you do come up with an updated recipe we'd love to have it added to meta-oe > or some other layer ;) > I have a lmsensors recipe somewhere around here. I'll dust it off and post it to the oe-core mailing list. Marc _______________________________________________ yocto mailing list yocto@yoctoproject.org https://lists.yoctoproject.org/listinfo/yocto ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: lm-sensors not available as a package? 2012-10-16 17:53 ` Jonathan Haws @ 2012-10-16 18:27 ` Marc Ferland 2012-10-17 20:21 ` Jonathan Haws 0 siblings, 1 reply; 8+ messages in thread From: Marc Ferland @ 2012-10-16 18:27 UTC (permalink / raw) To: Jonathan Haws; +Cc: yocto@yoctoproject.org Jonathan Haws <Jonathan.Haws@sdl.usu.edu> writes: > I got the oe-classic recipe building with the latest version of > lm-sensors. However, I am now running into perl issues - when I try > to run sensors-detect, I get errors with the @INC paths - strict.pm is > not found anywhere on the filesystem. I went back to see if I had > left out perl support, but it was present and included. Where is > strict.pm? How can I get that in my image? > > Thanks! > You might want to add 'perl-modules' to RDEPENDS_lmsensors-scripts. Marc ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: lm-sensors not available as a package? 2012-10-16 18:27 ` Marc Ferland @ 2012-10-17 20:21 ` Jonathan Haws 2012-10-17 20:37 ` Marc Ferland 0 siblings, 1 reply; 8+ messages in thread From: Jonathan Haws @ 2012-10-17 20:21 UTC (permalink / raw) To: Marc Ferland; +Cc: yocto@yoctoproject.org Marc, If you have a working recipe, I would love to see it. Maybe you have already solved some of the issues I have been seeing. I have a recipe that installs the software, however, I would like to have it run sensors-detect on first boot as well as install the lm_sensors.init script to /etc/init.d. My recipe now looks like this: ------------------------------------------------------------------------------------------------------------------------------------------------ DESCRIPTION = "Hardware health monitoring applications" HOMEPAGE = "http://www.lm-sensors.org/" DEPENDS = "sysfsutils virtual/libiconv" LICENSE = "GPLv2" PR = "r1" DEPENDS = "bison-native flex-native" PACKAGE_ARCH = "${MACHINE_ARCH}" SRC_URI = "http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-${PV}.tar.bz2" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ file://COPYING.LGPL;md5=4fbd65380cdd255951079008b364516c \ " SRC_URI[md5sum] = "f357ba00b080ab102a170f7bf8bb2578" SRC_URI[sha256sum] = "f13dd885406841a7352ccfb8b9ccb23c4c057abe3de4258da5444c149a9e3ae1" S = "${WORKDIR}/lm_sensors-${PV}" EXTRA_OEMAKE = 'LINUX=${STAGING_KERNEL_DIR} EXLDFLAGS="${LDFLAGS}" \ MACHINE=${TARGET_ARCH} PREFIX=${prefix} CC="${CC}" AR="${AR}"' do_compile() { oe_runmake user PROG_EXTRA=sensors } do_install() { oe_runmake user_install DESTDIR=${D} install -m 0755 ${S}/prog/init/lm_sensors.init ${D}/${sysconfdir}/init.d/lm_sensors.init ln -sf ../init.d/lm_sensors.init ${D}${sysconfdir}/rcS.d/S90lm_sensors.init } pkr_postinst_lmsensors-scripts() { #!/bin/sh -e if [ x"$D" = "x" ]; then # Actions to carry out on the device go here yes | sensors-detect else exit 1 fi } PACKAGES =+ "lmsensors-sensors lmsensors-sensors-dbg" PACKAGES =+ "lmsensors-scripts" FILES_lmsensors-scripts = "${bindir}/*.pl ${bindir}/ddcmon ${sbindir}/fancontrol* ${sbindir}/pwmconfig ${sbindir}/sensors-detect ${sysconfdir}/init.d/lm_sensors.init" RDEPENDS_lmsensors-scripts += "lmsensors-sensors perl bash perl-modules" FILES_lmsensors-sensors = "${bindir}/sensors ${sysconfdir}" FILES_lmsensors-sensors-dbg += "${bindir}/.debug/sensors" ------------------------------------------------------------------------------------------------------------------------------------------------ However, I get the following errors when building: ------------------------------------------------------------------------------------------------------------------------------------------------ ERROR: Function failed: do_install (see /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/temp/log.do_install.9255 for further information) ERROR: Logfile of failure stored in: /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/temp/log.do_install.9255 Log data follows: | DEBUG: Executing shell function do_install | NOTE: make -j 4 LINUX=/opt/yocto/poky/build/tmp/sysroots/penryn/usr/src/kernel EXLDFLAGS=-Wl,-O1 -Wl,--hash-style=gnu -Wl,--as-needed MACHINE=x86_64 PREFIX=/usr CC=x86_64-poky-linux-gcc -m64 -march=core2 -msse3 -mtune=generic -mfpmath=sse --sysroot=/opt/yocto/poky/build/tmp/sysroots/penryn AR=x86_64-poky-linux-ar user_install DESTDIR=/opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image | mkdir -p /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/lib /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/include/sensors /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man3 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man5 | mkdir -p /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/sbin /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man8 | mkdir -p /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/sbin /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man8 | mkdir -p /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/bin /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man1 | install -m 755 prog/detect/sensors-detect /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/sbin | install -m 755 prog/pwm/fancontrol prog/pwm/pwmconfig /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/sbin | install -m 755 prog/sensors/sensors /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/bin | install -m 644 lib/libsensors.a /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/lib | install -m 644 prog/pwm/fancontrol.8 prog/pwm/pwmconfig.8 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man8 | install -m 644 prog/sensors/sensors.1 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man1 | install -m 644 prog/detect/sensors-detect.8 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man8 | mkdir -p /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc/sensors.d | if [ ! -e /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc/sensors3.conf ] ; then \ | install -m 644 etc/sensors.conf.default /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc/sensors3.conf ; \ | fi | mkdir -p /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/sbin /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man8 | mkdir -p /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/bin | install -m 755 etc/sensors-conf-convert /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/bin | install -m 755 prog/dump/isadump prog/dump/isaset /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/sbin | install -m 755 lib/libsensors.so.4.3.2 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/lib | ln -sf libsensors.so.4.3.2 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/lib/libsensors.so.4 | if [ -e /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc/modprobe.d/lm_sensors \ | -a ! -e /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc/modprobe.d/lm_sensors.conf ] ; then \ | mv -f /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc/modprobe.d/lm_sensors /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/etc/modprobe.d/lm_sensors.conf ; \ | fi | ln -sf libsensors.so.4 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/lib/libsensors.so | install -m 644 lib/error.h lib/sensors.h /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/include/sensors | install -m 644 prog/dump/isadump.8 prog/dump/isaset.8 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man8 | install -m 644 lib/libsensors.3 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man3 | install -m 644 lib/sensors.conf.5 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man5 | ln -sf sensors.conf.5 /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image/usr/man/man5/sensors3.conf.5 | *** Important notes: | *** * The libsensors configuration file (/etc/sensors3.conf) is never | *** overwritten by our installation process, so that you won't lose | *** your personal settings in that file. You still can get our latest | *** default config file in etc/sensors.conf.default and manually copy | *** it to /etc/sensors3.conf if you want. You will then want to | *** edit it to fit your needs again. | *** * The format of /etc/sensors3.conf changed with lm-sensors 3.0.0. | *** If you have a custom configuration file using the old format, you | *** can convert it using the sensors-conf-convert script. Otherwise just | *** overwrite your old configuration file with the new default one. | *** * As of lm-sensors 3.1.0, the default configuration file only | *** contains statements which do not depend on how chips are wired. | *** If you miss parts of the bigger configuration file that used to be | *** the default, copy the relevant parts from etc/sensors.conf.eg to | *** /etc/sensors3.conf. | install: cannot create regular file `/opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/image//etc/init.d/lm_sensors.init': No such file or directory | ERROR: Function failed: do_install (see /opt/yocto/poky/build/tmp/work/penryn-poky-linux/lmsensors-apps-3.3.2-r1/temp/log.do_install.9255 for further information) ERROR: Task 387 (/opt/yocto/poky/meta-intel/meta-penryn/recipes-extended/lm_sensors/lmsensors-apps_3.3.2.bb, do_install) failed with exit code '1' ------------------------------------------------------------------------------------------------------------------------------------------------ Can anyone tell me how I can get the lm_sensors.init script installed into /etc/init.d? I don't understand why when I follow the same syntax as the initscripts recipe, this fails. As a sidenote, I would also like to get a /data directory installed as part of the rootfs via a recipe (as a mountpoint for a secondary disk). How is that typically done? Thanks! Jonathan ________________________________________ From: Marc Ferland [marc.ferland@gmail.com] on behalf of Marc Ferland [ferlandm@sonatest.com] Sent: Tuesday, October 16, 2012 12:27 To: Jonathan Haws Cc: yocto@yoctoproject.org Subject: Re: [yocto] lm-sensors not available as a package? Jonathan Haws <Jonathan.Haws@sdl.usu.edu> writes: > I got the oe-classic recipe building with the latest version of > lm-sensors. However, I am now running into perl issues - when I try > to run sensors-detect, I get errors with the @INC paths - strict.pm is > not found anywhere on the filesystem. I went back to see if I had > left out perl support, but it was present and included. Where is > strict.pm? How can I get that in my image? > > Thanks! > You might want to add 'perl-modules' to RDEPENDS_lmsensors-scripts. Marc ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: lm-sensors not available as a package? 2012-10-17 20:21 ` Jonathan Haws @ 2012-10-17 20:37 ` Marc Ferland 0 siblings, 0 replies; 8+ messages in thread From: Marc Ferland @ 2012-10-17 20:37 UTC (permalink / raw) To: Jonathan Haws; +Cc: yocto@yoctoproject.org Jonathan Haws <Jonathan.Haws@sdl.usu.edu> writes: > Marc, > > If you have a working recipe, I would love to see it. Maybe you have > already solved some of the issues I have been seeing. > > I have a recipe that installs the software, however, I would like to > have it run sensors-detect on first boot as well as install the > lm_sensors.init script to /etc/init.d. My recipe now looks like this: > Hi Jonathan, I have posted a firt version of my recipe to the oe-core mailing list. You can try this. http://lists.linuxtogo.org/pipermail/openembedded-core/2012-October/031002.html I'll probably post a revised version by the end of the week to the meta-oe mailing list as suggested by Paul and Martin. Enjoy! Marc ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: lm-sensors not available as a package? 2012-10-16 16:06 ` Paul Eggleton 2012-10-16 17:37 ` Marc Ferland @ 2012-10-16 18:20 ` Marc Ferland 1 sibling, 0 replies; 8+ messages in thread From: Marc Ferland @ 2012-10-16 18:20 UTC (permalink / raw) To: Paul Eggleton; +Cc: yocto Paul Eggleton <paul.eggleton@linux.intel.com> writes: > On Tuesday 16 October 2012 16:00:01 Jonathan Haws wrote: >> I would be surprised if a recipe for lm-sensors has not already been >> created, however I cannot find one. Can someone point me in the right >> direction? >> >> All I can find is a sysstat package that I can include via >> IMAGE_INSTALL_append, however I cannot see how I can get the same >> information out of it that lm-sensors gives me. >> >> Has anyone got lm-sensors included in their image? If so, can you share the >> recipe? > > Unless anyone else pipes up, my local index suggests that this is something > that hasn't yet been brought up-to-date from OE-Classic. > > http://git.openembedded.org/openembedded/tree/recipes/lm_sensors > > Assuming nothing else is available you should be able to use this as a base. > There is a brief guide on the main things that need to be changed when > updating a recipe from OE-Classic here: > > http://www.openembedded.org/wiki/Migrating_metadata_to_OE-Core > > If you do come up with an updated recipe we'd love to have it added to meta-oe > or some other layer ;) > Paul, In what section should the lmsensors recipe be added? Would 'recipe-bsp' be ok? Regards, Marc ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2012-10-17 20:37 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2012-10-16 16:00 lm-sensors not available as a package? Jonathan Haws 2012-10-16 16:06 ` Paul Eggleton 2012-10-16 17:37 ` Marc Ferland 2012-10-16 17:53 ` Jonathan Haws 2012-10-16 18:27 ` Marc Ferland 2012-10-17 20:21 ` Jonathan Haws 2012-10-17 20:37 ` Marc Ferland 2012-10-16 18:20 ` Marc Ferland
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.