Compare commits

...

4 Commits
master ... 1.3

Author SHA1 Message Date
Leonardo Sandoval
09a2b5d29a README: include info to send patches
Signed-off-by: Leonardo Sandoval <leonardo.sandoval@freescale.com>
2013-01-24 19:05:07 -02:00
Fabio Estevam
6d72e980b5 linux-imx-2.6.35.3: udev needs CONFIG_DEVTMPFS_MOUNT
New udev version needs CONFIG_DEVTMPFS_MOUNT to be selected, otherwise console
gets stuck.

The same approach has been already deployed into 3.0.35 as per commit 96417b88a
at meta-freescale-arm: (Recent versions of udev (182 in OE-core) need devtmpfs
to operate correctly).

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
2013-01-23 14:19:53 -02:00
Fabio Estevam
ab43b05983 README: Point to the official Yocto git tree
Point to the official Yocto git tree.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
2013-01-23 14:19:50 -02:00
Otavio Salvador
458651889d layer.conf: Use .= for adding to BBPATH and += to BBFILES
http://cgit.openembedded.org/meta-openembedded/commit/?id=3c21a46020bd0816579648

This triggers exception NameError: name 'base_contains' is not defined
without this change

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2013-01-06 18:57:21 -02:00
4 changed files with 20 additions and 7 deletions

19
README
View File

@ -10,7 +10,7 @@ URI: git://git.openembedded.org/openembedded-core
branch: danny branch: danny
revision: HEAD revision: HEAD
URI: git://github.com/Freescale/meta-fsl-arm.git URI: git://git.yoctoproject.org/meta-fsl-arm
branch: danny branch: danny
revision: HEAD revision: HEAD
@ -20,5 +20,18 @@ Contributing
To contribute to this layer you should the patches for review to the To contribute to this layer you should the patches for review to the
mailing list. mailing list.
Mailing list: https://lists.yoctoproject.org/listinfo/meta-freescale Mailing list:
Source code: https://github.com/Freescale/meta-fsl-arm-extra
https://lists.yoctoproject.org/listinfo/meta-freescale
Source code:
https://github.com/Freescale/meta-fsl-arm-extra
When creating a patch of the last commit, use
git format-patch -s --subject-prefix='meta-fsl-arm-extra][PATCH' -1
To send it to the community, use
git send-email --to meta-freescale@yoctoproject.org <generated patch>

View File

@ -1,8 +1,8 @@
# We have a conf and classes directory, add to BBPATH # We have a conf and classes directory, add to BBPATH
BBPATH := "${BBPATH}:${LAYERDIR}" BBPATH .= ":${LAYERDIR}"
# We have a packages directory, add to BBFILES # We have a packages directory, add to BBFILES
BBFILES := "${BBFILES} ${LAYERDIR}/recipes-*/*/*.bb \ BBFILES += "${LAYERDIR}/recipes-*/*/*.bb \
${LAYERDIR}/recipes-*/*/*.bbappend" ${LAYERDIR}/recipes-*/*/*.bbappend"
BBFILE_COLLECTIONS += "fsl-arm-extra" BBFILE_COLLECTIONS += "fsl-arm-extra"

View File

@ -551,7 +551,7 @@ CONFIG_RFKILL_INPUT=y
# #
CONFIG_UEVENT_HELPER_PATH="" CONFIG_UEVENT_HELPER_PATH=""
CONFIG_DEVTMPFS=y CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set CONFIG_DEVTMPFS_MOUNT=y
CONFIG_STANDALONE=y CONFIG_STANDALONE=y
CONFIG_PREVENT_FIRMWARE_BUILD=y CONFIG_PREVENT_FIRMWARE_BUILD=y
CONFIG_FW_LOADER=y CONFIG_FW_LOADER=y

View File

@ -1,6 +1,6 @@
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:" FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}-${PV}:"
PRINC := "${@int(PRINC) + 10}" PRINC := "${@int(PRINC) + 11}"
# Board specific patches # Board specific patches
SRC_URI_append_imx233-olinuxino = " file://imx233-olinuxino.patch" SRC_URI_append_imx233-olinuxino = " file://imx233-olinuxino.patch"