From: Nitin A Kamble
This commit fixes the create-pull-request script failure with certain versions
of the git.
Thanks,
Nitin
The following changes since commit 4d83a90bfb5a41deb81ca8878363a89fccf95d89:
gst-plugins-package.inc: Avoid dependency on ${PN} from ${PN}-
(2015-02-24 17:41:44
From: Nitin A Kamble
As seen below, this script fails with git versions having more than 3 digit.
$> ../poky.git/scripts/create-pull-request -b nitin/misc -u contrib -r
master.origin
fatal: No such ref: :nitin/misc
fatal: Needed a single revision
ERROR: git request-pull reported an error
From: Nitin A Kamble
Provides the pulseaudio to ALSA connector, which is needed for ALSA apps when
using the pulseaudio sound server on the target,
Signed-off-by: Nitin A Kamble
---
.../recipes-multimedia/alsa/alsa-plugins_1.0.28.bb | 49 ++
1 file changed, 49 insertions
From: Nitin A Kamble
a new recipe which recipe provides the ability to setup a BSP image for a
specific machine or platform at the boot time. The base recipe does not
provide any machine configuration files, those are provided by individual
BSP layer.
Signed-off-by: Nitin A Kamble
From: Nitin A Kamble
This pull request introduces a new feature called machine-setup-tool, which
can be used by the BSP. With the use of the tool, BSPs for different boards
which mainly differ in the text configuration for the target board, can be
consolidated to use a common BSP.
The tool
From: Nitin A Kamble
Even though the kernel-dev package provides the required support for
building external kernel modules on the target, some commonly used scripts
and utilities fail as they are not finding the kernel module build support
files at the desired location.
Create the /lib/modules
From: Nitin A Kamble
The commit message is changed as per the feedback received from Bruce.
The following changes since commit c34775f8864f9bf9a2b32af1e3a803f7d84e11ba:
deb_packaging: Added support for multilib (2014-09-30 14:33:31 +0100)
are available in the git repository at:
git
From: Nitin A Kamble
The path /lib/modules//build was missing on the target.
It is required to build external modules on the target. The kernel-dev
package provides all the needed support files for building the external
kernel modules. This commit creates the required missing link on the
target
From: Nitin A Kamble
To build external modules, the link /lib/modules//build
must exist, and point to the proper kernel source area.
The kernel-dev package already provides the needed source files. Now
putting a link in place to unblock the external module building.
Fixes Bug:
[YOCTO #2968
From: Nitin A Kamble
The lttng-modules recipe was failing with meta-intel BSPs with the
v3.17 kernel. The qemu machines from the poky layers did not get
hit by this issue. The accompanying commit fixes the issue observed in
the lttng-modules recipe. The fix is made in a way to not break on older
From: Nitin A Kamble
The lttng-modules recipe was failing for meta-intel BSPs with the v3.17 kernel.
These BSP kernels were enabling some of the audio codec drivers, whose
structures are changed recently, causing mismatch with lttng-modules code
expectations. The qemu machines did not see this
From: Nitin A Kamble
This pull request provides the base recipe for the Image Configurator tool,
which provides ability to configure the BSP images for a particular hardware
at boot time.
The recipe needs machine configuration files, which are to be provided in
the individual BSP layers. The
From: Nitin A Kamble
This recipe adds ability to configure a BSP image for a specific
machine or platform at the boot time. The machine configurations
are not provided here, and are to be provided in the BSP layers.
Signed-off-by: Nitin A Kamble
---
.../imageconfigurator
On 8/15/2014 1:38 PM, Saul Wold wrote:
-PR = "r1"
+PR = "r2"
You don't need the PR bump anymore, just leave it set to r1
Sau!
OK, I have update the commit in the contrib branch with PR = r1.
Nitin
--
___
Openembedded-core mailing list
Openembed
From: Nitin A Kamble
One of the bug reported for the grub-2 recipe is fixed in the following commit.
Thanks,
Nitin
The following changes since commit 093149d22461a3a76980635bc46cdba1c7c0b181:
avahi: unset FILES_avahi to avoid packaging files there (2014-08-15 18:21:54
+0100)
are
From: Nitin A Kamble
Avoid building and packaging of sparc64 specific files in the x86 builds.
Fixes Bug:
[YOCTO #6427]
Signed-off-by: Nitin A Kamble
---
...rub2-remove-sparc64-setup-from-x86-builds.patch | 104 +
meta/recipes-bsp/grub/grub_2.00.bb | 3
From: Nitin A Kamble
* Remove an unnecessary check
* Instead of ignoring, report the errors
Signed-off-by: Nitin A Kamble
---
meta/classes/boot-directdisk.bbclass | 4 +++-
meta/classes/bootimg.bbclass | 2 ++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/meta/classes
From: Nitin A Kamble
The use of the INITRD variable is changed in a recent commit. Instead of
specifying a single filesystem image, it specifies a list of file system
images. Reflecting this change in the documentation.
Signed-off-by: Nitin A Kamble
---
documentation/ref-manual/ref
From: Nitin A Kamble
Here are couple of commits which enhances the code and documentation referring
the recently changed INITRD variable. It is based on the feedback received from
Darren Hart.
Thanks,
Nitin
The following changes since commit 870bb8d35547b8313b3a487d7e8b914ab9470e64
On 8/5/2014 9:45 AM, Hart, Darren wrote:
On 8/4/14, 21:33, "Kamble, Nitin A" wrote:
On 8/4/2014 9:38 AM, Hart, Darren wrote:
On 7/29/14, 11:34, "Kamble, Nitin A" wrote:
...
+ if [ -n "${INITRD}" ]; then
+ rm -f $dest/initrd
+ for fs in ${INITRD}
+
On 8/4/2014 9:38 AM, Hart, Darren wrote:
On 7/29/14, 11:34, "Kamble, Nitin A" wrote:
From: Nitin A Kamble
Hi Nitin,
Generally speaking this looks like a good improvement. I don't have any
major technical concerns, but we do need to address some grammatical
issues in the
From: Nitin A Kamble
This commit extends the INITRD variable, so that it can accommodate multiple
filesystems as expected by the Linux kernel.
Thanks to Ross Burton for this suggestion to simplify the early microcode
loading support in the meta-intel Layer.
Thanks,
Nitin
The following changes
From: Nitin A Kamble
The initrd image used by the Linux kernel is list of file system images
concatenated together and presented as a single initrd file at boot time.
So far the initrd is a single filesystem image. But in cases like to support
early microcode loading, the initrd image need to
From: Nitin A Kamble
The recently added kernel-module-split.bbclass had a bug in processing of
the KERNEL_MODULE_AUTOLOAD variable. It was using the older autload variable
in place of the newer autoloadlist variable, which was causing build failure
as seen below.
The stack trace of python calls
From: Nitin A Kamble
Here is a build fix for the build breakage of a meta-intel BSP.
Thanks,
Nitin
The following changes since commit f3394914fd209ac186ef6806794dcbd915ef4fed:
linux-yocto/3.10: update to v3.10.43 (2014-06-17 17:56:57 +0100)
are available in the git repository at:
git
From: Nitin A Kamble
In this v2 pull request, the commit is updated as per feedback received
from Darren.
Thanks,
Nitin
The following changes since commit 863cc7483f5ee43189537940de8ee5c0964d24cc:
poky.conf: Post release version bump (2014-04-10 18:03:07 +0100)
are available in the git
From: Nitin A Kamble
Use machine overrides for variables for this skeleton kernel recipe
so that people following skeleton do it right at the beginning.
The machine overrides for the variables reduces variable name-space
pollution and avoids unintentional influences on other layers.
Signed
From: Nitin A Kamble
The kernel variables in kernel bbappend recipes such as LINUX_VERSION should
always use machine overrides to unintentionally influencing kernel variables
in other layers. Adding missing overrides to the kernel recipe in the
meta-skeleton layer, so people who use it to make
From: Nitin A Kamble
Use machine overrides for variables for this skeleton recipe so that
people following skeleton do it right at the beginning.
The machine overrides for the variables reduces pollution of name space
and avoid unintentional influences on other layers.
Signed-off-by: Nitin A
From: Nitin A Kamble
The Kernel module packages for x32 target have 64 bit binaries, which
breaks the QA_check expecting all the packages to be 32bit.
Make a special case for kernel module packages for x32 targets, to avoid
this false error.
Fixes Bug:
[YOCTO #5903]
Signed-off-by: Nitin A
From: Nitin A Kamble
This v2 fix is improved as per feedback from Phil Blundell
Thanks,
Nitin
The following changes since commit 83b3e3e8e34a2512bcb1fe298715ece58c83dca3:
package_manager.py: RpmPM: don't add smart channel if already added
(2014-03-03 15:05:32 -0800)
are available i
From: Nitin A Kamble
The Kernel module packages for x32 target have 64 bit binaries, which
breaks the QA_check expecting all the packages to be 32bit.
Make a special case for kernel module packages for x32 targets, to avoid
this false error.
Fixes Bug:
[YOCTO #5903]
Signed-off-by: Nitin A
From: Nitin A Kamble
The kernel modules for x32 target are 64bit, but the QA_check was expecting
them to be 32bit. The QA_check is fixed in this commit to avoid false errors.
Thanks,
Nitin
The following changes since commit 83b3e3e8e34a2512bcb1fe298715ece58c83dca3:
package_manager.py
From: Nitin A Kamble
Some of the external USB devices has internal USB hub, which
make them look like "fixed" rather than "removable". And USB
autosuspend does not work with some of these devices resulting
in inoperable pointing device.
Now the code detect these false "
From: Nitin A Kamble
This was believed to be a kernel issue earlier. With further debugging and
discussions the issue was identified as a faulty rule in the udev package.
Disabling the faulty udev rule solved the issue. With further digging we
found another fix for this issue in fedora, which
From: Nitin A Kamble
Here is a commit to give a better error regarding missing required
distro features.
Thanks,
Nitin
The following changes since commit 6382979cca1d1c57467f983ba9611f91555b20a9:
cronie: fix out of tree build (2013-08-19 11:25:23 +0100)
are available in the git repository
From: Nitin A Kamble
Some BSPs need to have some specific distro_features enabled. These
BSPs fail to build when these required DISTRO features are not
enabled. And the issue is, there is no clue in the build error, about
why the build is failing.
This commit addresses the issue by adding a
From: Nitin A Kamble
If the v4l2 machine feature is enabled, then the v4l2 gstreamer plugin
is also pulled in the gst-meta-base packages.
Signed-off-by: Nitin A Kamble
---
meta/recipes-multimedia/gstreamer/gst-meta-base_0.10.bb | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff
From: Nitin A Kamble
Here are few commits to add a new machine feature, v4l2. These commits
provide:
* A new recipe which provides tools to poke v4l2 config on the target
* a new machine feature: v4l2 which brings a set of related packages.
* modification to gst-meta-base recipe, to enable the
From: Nitin A Kamble
This new machine feature gives a choice to add the video for linux 2
drivers and related utilities to BSPs.
Signed-off-by: Nitin A Kamble
---
meta/recipes-core/packagegroups/packagegroup-base.bb | 8
1 file changed, 8 insertions(+)
diff --git a/meta/recipes-core
From: Nitin A Kamble
The v4l-utils recipe provides v4l2-ctl and other tools, which help in
understanding the configuration needed by v4l2 devices like a camera.
This recipe is imported from meta-oe layer, and then updated
and modified to work with the newest version.
Signed-off-by: Nitin A
From: Nitin A Kamble
This fixes a bug which affects any lsb (or non-X) image which
includes the tools-testapp package group.
Thanks,
Nitin
The following changes since commit a62aed41f2d8f874f7ae24d0e5be5dbc66ea2199:
lrzsz: check locale.h in configure (2013-06-04 15:55:46 +0100)
are
From: Nitin A Kamble
This package group adds packages needing Xserver, These packages
demand X drivers such as EMGD driver. And if the image does not
include Xserver then it causes a build error about Xserver like
this:
Error: no package provides xorg-abi-video-8
Fix the issue by adding
From: Nitin A Kamble
This commit fixes runtime hang of 'dropbearkey' utility, built for a x32
target abi system. The hang was observed while generating ssh keys, with
this command:
dropbearkey -t dss -f private
The issue is fixed by changing the code, where 'long' in x86_6
From: Nitin A Kamble
Here is a single fix for a hang noticed in the dropbear, built for x32 abi
target.
Thanks,
Nitin
The following changes since commit e8197722de1f6006ceae0d4266de91c1db7278e3:
buildhistory: Sync with bitbake changes (2013-05-23 11:51:53 +0100)
are available in the git
From: Nitin A Kamble
The install boot option was giving the following error when one tried to
install the live image on a permanent storage of a BSP.
cat: write error Invalid argument
Installation image failed
sh: can't access tty: job control turned off
Further digging into the issue,
From: Nitin A Kamble
Information on the bugfix is in the commit's header.
Thanks,
Nitin
The following changes since commit 45c8cc1a58e7868f4603be08a86fef178edfc926:
poky.conf: add Poky 1.4 and CentOS 6.4 to SANITY_TESTED_DISTROS (2013-04-15
17:21:28 +0100)
are available in th
From: Nitin A Kamble
The recent change in the builddir location is breaking this recipe as
it is trying to run a script (make-image-header.sh) located in sourcedir
from builddir. As the script does not gets to run, the resulting file is
not generated causing error as seen below. This commit
From: Nitin A Kamble
This was detected on the autobuilder. More details are in the commit.
Thanks,
Nitin
The following changes since commit bdca49274173153b1b0a72887de6321b4756b684:
classes/rm_work: rename RM_WORK_WHITELIST to RM_WORK_EXCLUDE (2013-03-26
21:19:51 +)
are available in
From: Nitin A Kamble
Due to recent change in the oecore layer grub-efi recipe uses separate
builddir and the paths used in the do_deply need to change accordingly.
This change avoids this build issue:
install: cannot stat
`/build-fri2/tmp/work/x86_64-linux/grub-efi-i586-native/2.00-r1/grub
From: Nitin A Kamble
Due to recent changes in the oecore layer to use separate builddir, the
grub-efi-native recipe need to change to avoid build errors.
Thanks,
Nitin
The following changes since commit c376f1f49cea182a2887945840ab97a20970a373:
package.bbclass: Ensure debug source file is
From: Richard Purdie
Signed-off-by: Richard Purdie
---
meta/recipes-extended/images/core-image-lsb-dev.bb | 12 +++-
meta/recipes-extended/images/core-image-lsb-sdk.bb | 14 --
2 files changed, 7 insertions(+), 19 deletions(-)
diff --git a/meta/recipes-extended/images/c
From: Richard Purdie
Currently hardware codecs are being injected in rather ugly ways and end up
either in no or all images. This adds a dedicated IMAGE_FEATURE for them based
on the MACHINE_HWCODECS variable. We may need to refine this in due course
but this patch at least illustrates the concep
From: Richard Purdie
At present its hard for the system to provide extra x11 hardware codecs.
We could lump them in with the XSERVER variable but this is suboptimal as
in some use cases the user might not want to include them in some images.
With this patch we keep our options open about separat
From: Nitin A Kamble
Here are commits for getting feedback from the community on the work
happening in the oecore for supporting hwcodecs for H/W BSPs properly.
The current requirements: we need a mechanism to
1. Add accelerated codecs to the images
2. Exclude the X based codecs automatically
From: Nitin A Kamble
This makes replacing kernel git repository easy.
For example you can add the following line in your local.conf to use your
own local kernel repository:
KSRC_linux_yocto_3_4_repo = "/home/nitin/linux-yocto-3.4.git/;protocol=file"
Signed-off-by: Nitin A Kamble
From: Nitin A Kamble
Here is a commit to make changing of the the linux-yocto v3.4 kernel repository
easy.
Thanks,
Nitin
The following changes since commit 9f263a60e3521b800121a6f527a7b30dc9b62432:
oprofile: add AArch64 support (2013-01-16 16:10:39 +)
are available in the git
From: Nitin A Kamble
This v2 fixes the license MD5SUM in the xf86-video-modesetting recipe.
And it also adds a commit which provides macros for specifying additional xorg
drivers in
the BSP configurations.
Thanks,
Nitin
The following changes since commit
From: Nitin A Kamble
This commit adds macros for fbdev & modesetting X driver packages.
Signed-off-by: Nitin A Kamble
---
meta/conf/machine/include/ia32-base.inc |4
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/meta/conf/machine/include/ia32-base.inc
b/meta/
From: Nitin A Kamble
I am trying to use gma500 driver for the noemgd BSPs. The current best
xf86 driver for it is modesetting. This recipe provides that
driver.
Signed-off-by: Nitin A Kamble
---
.../xorg-driver/xf86-video-modesetting_0.6.0.bb|8
1 files changed, 8 insertions
From: Nitin A Kamble
I am trying to use gma500 driver for the noemgd BSPs. The current best
xf86 driver for it is modesetting. This recipe provides that
driver.
Signed-off-by: Nitin A Kamble
---
.../xorg-driver/xf86-video-modesetting_0.6.0.bb|8
1 files changed, 8 insertions
From: Nitin A Kamble
This pull request adds this new recipe to oecore layer:
xf85-video-modesetting
Thanks,
Nitin
The following changes since commit 53cc748b93e8af584557d6db5309c3e955182c5c:
linux-libc-headers: fix headers install in long path name environments
(2013-01-10 23:53:51 +
From: Nitin A Kamble
Add logic in the create-pull-request to detect and warn about the
trailing white space inserted by patches.
Signed-off-by: Nitin A Kamble
---
scripts/create-pull-request |8
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/scripts/create-pull
From: Nitin A Kamble
This v2 commit makes the egrep's output colorful with the --color option, and
output is made silent when the patches are clean wrt trailing white space.
Detecting of the mixed white space was discussed on the mailing list, but
the discussion did not reach to a
From: Nitin A Kamble
Add logic in the create-pull-request to detect the trailing white space
inserted by patches.
Signed-off-by: Nitin A Kamble
---
scripts/create-pull-request | 13 -
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/scripts/create-pull-request b
From: Nitin A Kamble
The earlier (v1) patch was checking trailing white space only for added empty
lines.
This v2 patch checks for all the lines added by patches.
Thanks,
Nitin
The following changes since commit 381c4b69c7e8b452f4d3de2f8214e6e5f6a9abe7:
sstate.bbclass: fix detection of
From: Nitin A Kamble
This commit is for detecting trailing white space in the create-pull-request
script.
Thanks,
Nitin
The following changes since commit 381c4b69c7e8b452f4d3de2f8214e6e5f6a9abe7:
sstate.bbclass: fix detection of owners matching sstate files (2012-12-05
15:34:07 +
From: Nitin A Kamble
Add logic in the create-pull-request to detect the trailing white space
inserted by patches.
Signed-off-by: Nitin A Kamble
---
scripts/create-pull-request | 13 -
1 files changed, 12 insertions(+), 1 deletions(-)
diff --git a/scripts/create-pull-request b
From: Nitin A Kamble
This was affecting crownbay BSP. And it may also be affecting
fri2, sys940x BSPs. And this commit will fix the issues for all
these EMGD based BSPs.
Because of the xserver recipe upgrade in the oecore layer, the
xserver packaging defined in the .inc file is changed. And
From: Nitin A Kamble
This commit takes care of these packaging warnings.
WARNING: QA Issue: xserver-xorg-video-psb: Files/directories were installed but
not shipped
/usr/lib/xorg/modules/drivers/psb_drv.la
/usr/lib/xorg/modules/drivers/libmm.la
/usr/lib/xorg/modules/drivers/.debug
/usr
From: Nitin A Kamble
This commits are for meta-intel layer. And Ross'es patch tries to achieve the
same
from the oecore layer.
Thanks,
Nitin
The following changes since commit 154156a4db56f7b33fb1765cf6b87e683d027af9:
emgd-driver-bin: add further needed soft links (2012-11-26 18:
From: Nitin A Kamble
Because of the xserver recipe upgrade in the oecore layer, the
xserver packaging defined in the .inc file is changed. And this
change breaks the packaging of this older xserver recipe.
This commit fixes the issue by using the meta-intel
specific version of the xserver
From: Nitin A Kamble
This avoids the warning:
NOTE: multiple providers are available for runtime libxcb-dri2
(libxcb-nativesdk, libxcb)
NOTE: consider defining a PREFERRED_PROVIDER entry to match libxcb-dri2
until such times as we convert nativesdk to use a prefix like multilib.
Signed-off
From: Nitin A Kamble
The following changes since commit bd726660a3b365b8f0f702771afef30dcd05b6d7:
libxcb: Update for python-native changes (2012-07-30 16:54:34 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/work
http://git.pokylinux.org/cgit.cgi
From: Nitin A Kamble
In this V2 commit, not required changes from __init__.py are removed.
Thanks,
Nitin
The following changes since commit 5b014eae151a1584df4e3d3b96d18f9df3e55665:
fix my typos in patch headers (2012-07-16 21:45:01 -0700)
are available in the git repository at:
git
From: Nitin A Kamble
this allows wget fetcher to store the downloaded file in a specified custom
filename in ${DL_DIR}
Exmaple:
SRC_URI =
"https://edc.intel.com/Download.aspx?id=6190;downloadfilename=LIN_IEMGD_1_14_GOLD_2443.tgz";
This fixes bug:
[YOCTO #2570]
Signed-off-by: Niti
From: Nitin A Kamble
this allows wget fetcher to store the downloaded file in a specified custom
filename in ${DL_DIR}
Exmaple:
SRC_URI =
"https://edc.intel.com/Download.aspx?id=6190;downloadfilename=LIN_IEMGD_1_14_GOLD_2443.tgz";
This fixes bug:
[YOCTO #2570]
Signed-off-by: Niti
From: Nitin A Kamble
The following changes since commit 5b014eae151a1584df4e3d3b96d18f9df3e55665:
fix my typos in patch headers (2012-07-16 21:45:01 -0700)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/misc
http://git.pokylinux.org/cgit.cgi/poky
From: Nitin A Kamble
The following changes since commit 5ed19a40f407efa1e6a2043bd8e36d729968c446:
toolchain-scripts: Sync the SDK/ADT values to the build system (2012-07-17
18:02:55 +0100)
are available in the git repository at:
git://git.pokylinux.org/poky-contrib nitin/misc
http
From: Nitin A Kamble
Signed-off-by: Nitin A Kamble
---
..._MKDIR_P_warning_error_with_automake_1.12.patch | 10 +-
..._MKDIR_P_warning_error_with_automake_1.12.patch | 10 +-
.../gnutls/gnutls_fix_for_automake_1.12.1.patch|2 +-
3 files changed, 11 insertions(+), 11
From: Nitin A Kamble
automake has depricated use of @mkdir_p@, Fix the
issue by using @MKDIR_P@ instead.
added a new patch:
sed-4.1.2_fix_for_automake-1.12.patch
Signed-off-by: Nitin A Kamble
---
.../sed-4.1.2_fix_for_automake-1.12.patch | 37
meta/recipes
From: Nitin A Kamble
automake 1.12.x has deprecated automatic de-ANSI-fication support.
Fix sources to work with automake 1.12.x
Added a new patch:
lame-3.99.5_fix_for_automake-1.12.x.patch
Signed-off-by: Nitin A Kamble
---
.../lame/lame-3.99.5_fix_for_automake-1.12.x.patch | 59
From: Nitin A Kamble
Add the gawk-3.1.5_fix_for_automake-1.12.patch in SRC_URI.
Signed-off-by: Nitin A Kamble
---
...atch => gawk-3.1.5_fix_for_automake-1.12.patch} |0
meta/recipes-extended/gawk/gawk_3.1.5.bb |5 +++--
2 files changed, 3 insertions(+), 2 deleti
From: Nitin A Kamble
nongplv3 & commercial licence recipe testing revelaed more issue, and the fixes
for these are here.
Thanks,
Nitin
The following changes since commit 581d9dc2d148b67332a255cc1e7ce0679ff82c23:
tar: fix build with automake 1.12.x (2012-07-12 21:13:42 -0700)
are avail
From: Nitin A Kamble
Added a new patch
avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch
More details in the patch headers.
Signed-off-by: Nitin A Kamble
---
..._MKDIR_P_warning_error_with_automake_1.12.patch | 25
meta/recipes-extended/libidn
From: Nitin A Kamble
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
Avoids this build issue:
| rmdir: failed to remove
`/srv/home/nitin/builds2/build0/tmp/work/i586-poky-linux
From: Nitin A Kamble
Added a new patch:
telepathy-python_fix_for_automake_1.12.patch
More comments in the patch header.
Signed-off-by: Nitin A Kamble
---
.../telepathy-python_fix_for_automake_1.12.patch | 26
.../telepathy/telepathy-python_0.15.19.bb
From: Nitin A Kamble
Added a new patch:
webgit-gtk_fix_build_with_automake_1.12.patch
More comments in the patch header.
Signed-off-by: Nitin A Kamble
---
.../webgit-gtk_fix_build_with_automake_1.12.patch | 62
meta/recipes-sato/webkit/webkit-gtk_svn.bb
From: Nitin A Kamble
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
Signed-off-by: Nitin A Kamble
---
meta/recipes-sato/pimlico/dates_git.bb |6 +-
1 files changed, 1
From: Nitin A Kamble
Added a new patch:
libunistring/libunistring_fix_for_automake_1.12.patch
More comments in the patch header.
Signed-off-by: Nitin A Kamble
---
.../libunistring_fix_for_automake_1.12.patch | 81
.../libunistring/libunistring_0.9.3.bb
From: Nitin A Kamble
this commit avoids this build issue:
|
/srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/libexec/i586-poky-linux/gcc/i586-poky-linux/4.7.1/ld:
cannot find -lelf
| collect2: error: ld returned 1 exit status
...
| make: *** [all] Error 2
| ERROR: oe_runmake
From: Nitin A Kamble
Added a patch:
pcmanfm_fix_for_automake_1.12.patch
More information in the patch header.
Signed-off-by: Nitin A Kamble
---
.../files/pcmanfm_fix_for_automake_1.12.patch | 35
meta/recipes-sato/pcmanfm/pcmanfm_0.9.10.bb|5 ++-
2
From: Nitin A Kamble
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
Fixes this build issue:
| rmdir: failed to remove
`/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky
From: Nitin A Kamble
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
Avoids this build issue:
| rmdir: failed to remove
`/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky
From: Nitin A Kamble
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
Signed-off-by: Nitin A Kamble
---
meta/recipes-gnome/librsvg/librsvg_2.32.1.bb |8 ++--
1 files
From: Nitin A Kamble
added a new patch : fix_for_automake_1.12.x.patch
More information in the patch header.
Signed-off-by: Nitin A Kamble
---
meta/recipes-connectivity/avahi/avahi.inc |3 +-
.../avahi/files/fix_for_automake_1.12.x.patch | 34
2 files
From: Nitin A Kamble
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
avoid this issue:
| rmdir: failed to remove
`/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux
From: Nitin A Kamble
Added new patches:
avoid_AM_PROG_MKDIR_P_warning_error_with_automake_1.12.patch
gnutls_fix_for_automake_1.12.1.patch
more details in patch headers.
Signed-off-by: Nitin A Kamble
---
..._MKDIR_P_warning_error_with_automake_1.12.patch | 51
From: Nitin A Kamble
automake 1.12.x automatically deletes empty directories, so
the additional rmdir from the do_install_append fails.
cleanup the do_install_append for automake 1.12.x
avoid this issue:
| rmdir: failed to remove
`/srv/home/nitin/builds/build-gcc47/tmp/work/i586-poky-linux
From: Nitin A Kamble
Signed-off-by: Nitin A Kamble
---
.../automake/automake/path_prog_fixes.patch| 40 +++-
.../{automake_1.11.3.bb => automake_1.12.1.bb} |5 +-
2 files changed, 8 insertions(+), 37 deletions(-)
rename meta/recipes-devtools/autom
1 - 100 of 684 matches
Mail list logo