* [PATCH 0/2] Minor fixes
@ 2011-05-16 20:18 Tom Rini
2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
` (2 more replies)
0 siblings, 3 replies; 12+ messages in thread
From: Tom Rini @ 2011-05-16 20:18 UTC (permalink / raw)
To: openembedded-core
The following series brings in two minor fixups I've pushed into openembedded
master recently. openssh was being silly and using ${libdir}exec rather
than ${libexecdir} and we weren't wrapping perl${PV} which breaks relocated
caches where perl-native exists and perl doesn't.
Pull URL: git://git.openembedded.org/openembedded-core-contrib
Branch: trini/minor-fixes-16may2011
Browse: http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=trini/minor-fixes-16may2011
Thanks,
Tom Rini <tom_rini@mentor.com>
---
Tom Rini (2):
openssh: Don't use ${libdir}exec
perl-native: create_wrapper on perl${PV} too
meta/recipes-connectivity/openssh/openssh_5.6p1.bb | 4 ++--
meta/recipes-devtools/perl/perl-native_5.12.3.bb | 3 ++-
2 files changed, 4 insertions(+), 3 deletions(-)
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH 1/2] openssh: Don't use ${libdir}exec
2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
@ 2011-05-16 20:18 ` Tom Rini
2011-05-16 20:18 ` [PATCH 2/2] perl-native: create_wrapper on perl${PV} too Tom Rini
2011-05-17 18:23 ` [PATCH 0/2] Minor fixes Saul Wold
2 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2011-05-16 20:18 UTC (permalink / raw)
To: openembedded-core
This is 1259e0289ce53198cc6c57a9616c8a1623be502a in OE.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/recipes-connectivity/openssh/openssh_5.6p1.bb | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/meta/recipes-connectivity/openssh/openssh_5.6p1.bb b/meta/recipes-connectivity/openssh/openssh_5.6p1.bb
index d93a773..df7fcad 100644
--- a/meta/recipes-connectivity/openssh/openssh_5.6p1.bb
+++ b/meta/recipes-connectivity/openssh/openssh_5.6p1.bb
@@ -75,8 +75,8 @@ FILES_${PN}-ssh = "${bindir}/ssh.${PN} ${sysconfdir}/ssh/ssh_config"
FILES_${PN}-sshd = "${sbindir}/sshd ${sysconfdir}/init.d/sshd"
FILES_${PN}-sshd += "${sysconfdir}/ssh/moduli ${sysconfdir}/ssh/sshd_config"
FILES_${PN}-sftp = "${bindir}/sftp"
-FILES_${PN}-sftp-server = "${libdir}exec/sftp-server"
-FILES_${PN}-misc = "${bindir}/ssh* ${libdir}exec/ssh*"
+FILES_${PN}-sftp-server = "${libexecdir}/sftp-server"
+FILES_${PN}-misc = "${bindir}/ssh* ${libexecdir}/ssh*"
FILES_${PN}-keygen = "${bindir}/ssh-keygen"
RDEPENDS_${PN} += "${PN}-scp ${PN}-ssh ${PN}-sshd ${PN}-keygen"
--
1.7.0.4
^ permalink raw reply related [flat|nested] 12+ messages in thread* [PATCH 2/2] perl-native: create_wrapper on perl${PV} too
2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
@ 2011-05-16 20:18 ` Tom Rini
2011-05-17 18:23 ` [PATCH 0/2] Minor fixes Saul Wold
2 siblings, 0 replies; 12+ messages in thread
From: Tom Rini @ 2011-05-16 20:18 UTC (permalink / raw)
To: openembedded-core
perl${PV} becomes hostperl when building for the target so we need a wrapper
on that too.
This is 1e255fbd296e95ff178d66c4a1fe4875a988d7e1 in OE.
Signed-off-by: Tom Rini <tom_rini@mentor.com>
---
meta/recipes-devtools/perl/perl-native_5.12.3.bb | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
diff --git a/meta/recipes-devtools/perl/perl-native_5.12.3.bb b/meta/recipes-devtools/perl/perl-native_5.12.3.bb
index 0476bdf..c5cd13c 100644
--- a/meta/recipes-devtools/perl/perl-native_5.12.3.bb
+++ b/meta/recipes-devtools/perl/perl-native_5.12.3.bb
@@ -4,7 +4,7 @@ SECTION = "libs"
LICENSE = "Artistic|GPL"
LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8"
-PR = "r1"
+PR = "r2"
LIC_FILES_CHKSUM = "file://Copying;md5=2b4c6ffbcfcbdee469f02565f253d81a \
file://Artistic;md5=f921793d03cc6d63ec4b15e9be8fd3f8"
@@ -97,6 +97,7 @@ do_install () {
done
create_wrapper ${D}${bindir}/perl PERL5LIB='$PERL5LIB:${STAGING_LIBDIR}/perl/${PV}:${STAGING_LIBDIR}/perl/'
+ create_wrapper ${D}${bindir}/perl${PV} PERL5LIB='$PERL5LIB:${STAGING_LIBDIR}/perl/${PV}:${STAGING_LIBDIR}/perl/'
}
do_install_append_nylon() {
# get rid of definitions not supported by the gcc version we use for nylon...
--
1.7.0.4
^ permalink raw reply related [flat|nested] 12+ messages in thread* Re: [PATCH 0/2] Minor fixes
2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
2011-05-16 20:18 ` [PATCH 2/2] perl-native: create_wrapper on perl${PV} too Tom Rini
@ 2011-05-17 18:23 ` Saul Wold
2 siblings, 0 replies; 12+ messages in thread
From: Saul Wold @ 2011-05-17 18:23 UTC (permalink / raw)
To: Patches and discussions about the oe-core layer
On 05/16/2011 01:18 PM, Tom Rini wrote:
> The following series brings in two minor fixups I've pushed into openembedded
> master recently. openssh was being silly and using ${libdir}exec rather
> than ${libexecdir} and we weren't wrapping perl${PV} which breaks relocated
> caches where perl-native exists and perl doesn't.
>
> Pull URL: git://git.openembedded.org/openembedded-core-contrib
> Branch: trini/minor-fixes-16may2011
> Browse: http://git.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=trini/minor-fixes-16may2011
>
> Thanks,
> Tom Rini<tom_rini@mentor.com>
> ---
>
>
> Tom Rini (2):
> openssh: Don't use ${libdir}exec
> perl-native: create_wrapper on perl${PV} too
>
> meta/recipes-connectivity/openssh/openssh_5.6p1.bb | 4 ++--
> meta/recipes-devtools/perl/perl-native_5.12.3.bb | 3 ++-
> 2 files changed, 4 insertions(+), 3 deletions(-)
>
>
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core
>
Merged into OE-Core
Thanks
Sau!
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 0/2] Minor fixes
@ 2012-01-04 1:31 Joshua Lock
2012-01-04 11:25 ` Richard Purdie
0 siblings, 1 reply; 12+ messages in thread
From: Joshua Lock @ 2012-01-04 1:31 UTC (permalink / raw)
To: openembedded-core
A couple of small patches created in the course of putting together a point
release for Yocto 1.1.
Cheers,
Joshua
The following changes since commit de679a3036ebef1c7d7b8ee23f05590c95e498d9:
pseudo: ensure libs are included in package (2012-01-03 12:10:59 +0000)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib josh/stuff
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=josh/stuff
Joshua Lock (2):
linux-tools: add binutils to perf DEPENDS
cogl: ensure we can build on armv4
.../clutter/cogl/build_for_armv4t.patch | 23 ++++++++++++++++++++
meta/recipes-graphics/clutter/cogl_1.8.2.bb | 5 +++-
meta/recipes-graphics/clutter/cogl_git.bb | 5 ++-
meta/recipes-kernel/linux/linux-tools.inc | 2 +-
4 files changed, 31 insertions(+), 4 deletions(-)
create mode 100644 meta/recipes-graphics/clutter/cogl/build_for_armv4t.patch
--
1.7.7.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 0/2] Minor fixes
@ 2012-10-03 12:37 Paul Eggleton
2012-10-05 16:08 ` Saul Wold
0 siblings, 1 reply; 12+ messages in thread
From: Paul Eggleton @ 2012-10-03 12:37 UTC (permalink / raw)
To: openembedded-core
The following changes since commit eb96be4db46039752c44dc37ef676eaac04e3dba:
xf86-video-intel: drop libxvmc dependency (2012-10-03 12:41:03 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib paule/fixes2
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=paule/fixes2
Paul Eggleton (2):
buildhistory_analysis: update to use explode_dep_versions2()
rpmresolve: fix reporting of multiple matches error
meta/lib/oe/buildhistory_analysis.py | 23 +++++++++++++++++----
meta/recipes-devtools/rpm/rpmresolve/rpmresolve.c | 6 +++---
meta/recipes-devtools/rpm/rpmresolve_1.0.bb | 2 +-
3 files changed, 23 insertions(+), 8 deletions(-)
--
1.7.9.5
^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH 0/2] Minor fixes
@ 2022-11-26 2:55 Damien Le Moal
2022-11-28 14:15 ` Jens Axboe
0 siblings, 1 reply; 12+ messages in thread
From: Damien Le Moal @ 2022-11-26 2:55 UTC (permalink / raw)
To: Jens Axboe, linux-block
Jens,
A couple of patches to:
(1) fix recent mq-deadline improvement. Feeel free to squash that one
into commit 015d02f48537 ("block: mq-deadline: Do not break
sequential write streams to zoned HDDs") in your for-6.2/block
branch.
(2) Fix REQ_SYNC use for async direct IOs to block device files.
Damien Le Moal (2):
block: mq-deadline: Rename deadline_is_seq_writes()
block: fops: Do not set REQ_SYNC for async IOs
block/fops.c | 7 ++++++-
block/mq-deadline.c | 4 ++--
2 files changed, 8 insertions(+), 3 deletions(-)
--
2.38.1
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH 0/2] Minor fixes
2022-11-26 2:55 Damien Le Moal
@ 2022-11-28 14:15 ` Jens Axboe
2022-11-28 15:29 ` Christoph Hellwig
0 siblings, 1 reply; 12+ messages in thread
From: Jens Axboe @ 2022-11-28 14:15 UTC (permalink / raw)
To: Damien Le Moal, linux-block
On Sat, 26 Nov 2022 11:55:48 +0900, Damien Le Moal wrote:
> Jens,
>
> A couple of patches to:
> (1) fix recent mq-deadline improvement. Feeel free to squash that one
> into commit 015d02f48537 ("block: mq-deadline: Do not break
> sequential write streams to zoned HDDs") in your for-6.2/block
> branch.
> (2) Fix REQ_SYNC use for async direct IOs to block device files.
>
> [...]
Applied, thanks!
[1/2] block: mq-deadline: Rename deadline_is_seq_writes()
commit: 4b49197f9fbd2dd4e0452df6effaba665beecb45
[2/2] block: fops: Do not set REQ_SYNC for async IOs
commit: 26a7bc153a19f3349fd8c2e262728b2eae6bfd6f
Best regards,
--
Jens Axboe
^ permalink raw reply [flat|nested] 12+ messages in thread* Re: [PATCH 0/2] Minor fixes
2022-11-28 14:15 ` Jens Axboe
@ 2022-11-28 15:29 ` Christoph Hellwig
2022-11-28 15:36 ` Jens Axboe
0 siblings, 1 reply; 12+ messages in thread
From: Christoph Hellwig @ 2022-11-28 15:29 UTC (permalink / raw)
To: Jens Axboe; +Cc: Damien Le Moal, linux-block
On Mon, Nov 28, 2022 at 07:15:47AM -0700, Jens Axboe wrote:
> [2/2] block: fops: Do not set REQ_SYNC for async IOs
> commit: 26a7bc153a19f3349fd8c2e262728b2eae6bfd6f
Urgg. I don't think this is right. And even if it was, block device
I/O is not out of line with the other direct I/O implementations.
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH 0/2] Minor fixes
2022-11-28 15:29 ` Christoph Hellwig
@ 2022-11-28 15:36 ` Jens Axboe
0 siblings, 0 replies; 12+ messages in thread
From: Jens Axboe @ 2022-11-28 15:36 UTC (permalink / raw)
To: Christoph Hellwig; +Cc: Damien Le Moal, linux-block
On 11/28/22 8:29 AM, Christoph Hellwig wrote:
> On Mon, Nov 28, 2022 at 07:15:47AM -0700, Jens Axboe wrote:
>> [2/2] block: fops: Do not set REQ_SYNC for async IOs
>> commit: 26a7bc153a19f3349fd8c2e262728b2eae6bfd6f
>
> Urgg. I don't think this is right. And even if it was, block device
> I/O is not out of line with the other direct I/O implementations.
I'll drop it for now.
--
Jens Axboe
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2022-11-28 15:36 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-05-16 20:18 [PATCH 0/2] Minor fixes Tom Rini
2011-05-16 20:18 ` [PATCH 1/2] openssh: Don't use ${libdir}exec Tom Rini
2011-05-16 20:18 ` [PATCH 2/2] perl-native: create_wrapper on perl${PV} too Tom Rini
2011-05-17 18:23 ` [PATCH 0/2] Minor fixes Saul Wold
-- strict thread matches above, loose matches on Subject: below --
2012-01-04 1:31 Joshua Lock
2012-01-04 11:25 ` Richard Purdie
2012-10-03 12:37 Paul Eggleton
2012-10-05 16:08 ` Saul Wold
2022-11-26 2:55 Damien Le Moal
2022-11-28 14:15 ` Jens Axboe
2022-11-28 15:29 ` Christoph Hellwig
2022-11-28 15:36 ` Jens Axboe
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.