All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-selinux][PATCH 0/3] Version number cleanup
@ 2014-09-08 12:03 Philip Tricca
  2014-09-08 12:03 ` [meta-selinux][PATCH 1/3] shadow: Use wildcard for version number in bbappend Philip Tricca
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Philip Tricca @ 2014-09-08 12:03 UTC (permalink / raw)
  To: yocto

Patch set to use wildcards in the version numbers of the at and shadow
bbappends and to remove the 3.4 kernel bbappend.

Philip Tricca (3):
  shadow: Use wildcard for version number in bbappend.
  at: Use wildcard for version number in bbappend.
  linux-yocto: Remove bbappend for old 3.4 kernel.

 recipes-extended/at/at_%.bbappend               |    7 +++++++
 recipes-extended/at/at_3.1.14.bbappend          |    7 -------
 recipes-extended/shadow/shadow_%.bbappend       |    5 +++++
 recipes-extended/shadow/shadow_4.1.4.3.bbappend |    5 -----
 recipes-kernel/linux/linux-yocto_3.4.bbappend   |    7 -------
 5 files changed, 12 insertions(+), 19 deletions(-)
 create mode 100644 recipes-extended/at/at_%.bbappend
 delete mode 100644 recipes-extended/at/at_3.1.14.bbappend
 create mode 100644 recipes-extended/shadow/shadow_%.bbappend
 delete mode 100644 recipes-extended/shadow/shadow_4.1.4.3.bbappend
 delete mode 100644 recipes-kernel/linux/linux-yocto_3.4.bbappend

-- 
1.7.10.4



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [meta-selinux][PATCH 1/3] shadow: Use wildcard for version number in bbappend.
  2014-09-08 12:03 [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
@ 2014-09-08 12:03 ` Philip Tricca
  2014-09-08 12:03 ` [meta-selinux][PATCH 2/3] at: " Philip Tricca
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 6+ messages in thread
From: Philip Tricca @ 2014-09-08 12:03 UTC (permalink / raw)
  To: yocto

Signed-off-by: Philip Tricca <flihp@twobit.us>
---
 recipes-extended/shadow/shadow_%.bbappend       |    5 +++++
 recipes-extended/shadow/shadow_4.1.4.3.bbappend |    5 -----
 2 files changed, 5 insertions(+), 5 deletions(-)
 create mode 100644 recipes-extended/shadow/shadow_%.bbappend
 delete mode 100644 recipes-extended/shadow/shadow_4.1.4.3.bbappend

diff --git a/recipes-extended/shadow/shadow_%.bbappend b/recipes-extended/shadow/shadow_%.bbappend
new file mode 100644
index 0000000..befe620
--- /dev/null
+++ b/recipes-extended/shadow/shadow_%.bbappend
@@ -0,0 +1,5 @@
+PR .= ".6"
+
+inherit with-selinux with-audit
+
+FILESEXTRAPATHS_prepend := "${@target_selinux(d, '${THISDIR}/files:')}"
diff --git a/recipes-extended/shadow/shadow_4.1.4.3.bbappend b/recipes-extended/shadow/shadow_4.1.4.3.bbappend
deleted file mode 100644
index befe620..0000000
--- a/recipes-extended/shadow/shadow_4.1.4.3.bbappend
+++ /dev/null
@@ -1,5 +0,0 @@
-PR .= ".6"
-
-inherit with-selinux with-audit
-
-FILESEXTRAPATHS_prepend := "${@target_selinux(d, '${THISDIR}/files:')}"
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-selinux][PATCH 2/3] at: Use wildcard for version number in bbappend.
  2014-09-08 12:03 [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
  2014-09-08 12:03 ` [meta-selinux][PATCH 1/3] shadow: Use wildcard for version number in bbappend Philip Tricca
@ 2014-09-08 12:03 ` Philip Tricca
  2014-09-08 12:03 ` [meta-selinux][PATCH 3/3] linux-yocto: Remove bbappend for old 3.4 kernel Philip Tricca
  2014-09-12 15:51 ` [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
  3 siblings, 0 replies; 6+ messages in thread
From: Philip Tricca @ 2014-09-08 12:03 UTC (permalink / raw)
  To: yocto

Signed-off-by: Philip Tricca <flihp@twobit.us>
---
 recipes-extended/at/at_%.bbappend      |    7 +++++++
 recipes-extended/at/at_3.1.14.bbappend |    7 -------
 2 files changed, 7 insertions(+), 7 deletions(-)
 create mode 100644 recipes-extended/at/at_%.bbappend
 delete mode 100644 recipes-extended/at/at_3.1.14.bbappend

diff --git a/recipes-extended/at/at_%.bbappend b/recipes-extended/at/at_%.bbappend
new file mode 100644
index 0000000..f30abab
--- /dev/null
+++ b/recipes-extended/at/at_%.bbappend
@@ -0,0 +1,7 @@
+PR .= ".2"
+
+FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
+
+SRC_URI += "file://at-3.1.13-selinux.patch"
+
+inherit with-selinux
diff --git a/recipes-extended/at/at_3.1.14.bbappend b/recipes-extended/at/at_3.1.14.bbappend
deleted file mode 100644
index f30abab..0000000
--- a/recipes-extended/at/at_3.1.14.bbappend
+++ /dev/null
@@ -1,7 +0,0 @@
-PR .= ".2"
-
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-SRC_URI += "file://at-3.1.13-selinux.patch"
-
-inherit with-selinux
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-selinux][PATCH 3/3] linux-yocto: Remove bbappend for old 3.4 kernel.
  2014-09-08 12:03 [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
  2014-09-08 12:03 ` [meta-selinux][PATCH 1/3] shadow: Use wildcard for version number in bbappend Philip Tricca
  2014-09-08 12:03 ` [meta-selinux][PATCH 2/3] at: " Philip Tricca
@ 2014-09-08 12:03 ` Philip Tricca
  2014-09-12 15:51 ` [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
  3 siblings, 0 replies; 6+ messages in thread
From: Philip Tricca @ 2014-09-08 12:03 UTC (permalink / raw)
  To: yocto

Signed-off-by: Philip Tricca <flihp@twobit.us>
---
 recipes-kernel/linux/linux-yocto_3.4.bbappend |    7 -------
 1 file changed, 7 deletions(-)
 delete mode 100644 recipes-kernel/linux/linux-yocto_3.4.bbappend

diff --git a/recipes-kernel/linux/linux-yocto_3.4.bbappend b/recipes-kernel/linux/linux-yocto_3.4.bbappend
deleted file mode 100644
index f9487f2..0000000
--- a/recipes-kernel/linux/linux-yocto_3.4.bbappend
+++ /dev/null
@@ -1,7 +0,0 @@
-FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"
-
-# Enable selinux support in the kernel if the feature is enabled
-SRC_URI += "${@base_contains('DISTRO_FEATURES', 'selinux', 'file://selinux.cfg', '', d)}"
-# For inconsistent kallsyms data bug on ARM
-# http://lists.infradead.org/pipermail/linux-arm-kernel/2012-March/thread.html#89718 
-EXTRA_OEMAKE += "${@base_contains('TARGET_ARCH', 'arm', ' KALLSYMS_EXTRA_PASS=1', '', d)}"
-- 
1.7.10.4



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [meta-selinux][PATCH 0/3] Version number cleanup
  2014-09-08 12:03 [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
                   ` (2 preceding siblings ...)
  2014-09-08 12:03 ` [meta-selinux][PATCH 3/3] linux-yocto: Remove bbappend for old 3.4 kernel Philip Tricca
@ 2014-09-12 15:51 ` Philip Tricca
  2014-09-17  5:53   ` Pascal Ouyang
  3 siblings, 1 reply; 6+ messages in thread
From: Philip Tricca @ 2014-09-12 15:51 UTC (permalink / raw)
  To: Xin.Ouyang; +Cc: yocto

Hello Xin,

Just noticed that you pushed these patches to the meta-selinux repo but
with your name and a slightly different commit message in one case.
Other than forgetting to copy you on my initial message to the list was
there a problem with my patches? Just want to be sure that the next time
I send out patches I get them right if there was in fact an issue with
these ones.

Thanks,
Philip

On 09/08/2014 08:03 AM, Philip Tricca wrote:
> Patch set to use wildcards in the version numbers of the at and shadow
> bbappends and to remove the 3.4 kernel bbappend.
> 
> Philip Tricca (3):
>   shadow: Use wildcard for version number in bbappend.
>   at: Use wildcard for version number in bbappend.
>   linux-yocto: Remove bbappend for old 3.4 kernel.
> 
>  recipes-extended/at/at_%.bbappend               |    7 +++++++
>  recipes-extended/at/at_3.1.14.bbappend          |    7 -------
>  recipes-extended/shadow/shadow_%.bbappend       |    5 +++++
>  recipes-extended/shadow/shadow_4.1.4.3.bbappend |    5 -----
>  recipes-kernel/linux/linux-yocto_3.4.bbappend   |    7 -------
>  5 files changed, 12 insertions(+), 19 deletions(-)
>  create mode 100644 recipes-extended/at/at_%.bbappend
>  delete mode 100644 recipes-extended/at/at_3.1.14.bbappend
>  create mode 100644 recipes-extended/shadow/shadow_%.bbappend
>  delete mode 100644 recipes-extended/shadow/shadow_4.1.4.3.bbappend
>  delete mode 100644 recipes-kernel/linux/linux-yocto_3.4.bbappend
> 



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [meta-selinux][PATCH 0/3] Version number cleanup
  2014-09-12 15:51 ` [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
@ 2014-09-17  5:53   ` Pascal Ouyang
  0 siblings, 0 replies; 6+ messages in thread
From: Pascal Ouyang @ 2014-09-17  5:53 UTC (permalink / raw)
  To: Philip Tricca; +Cc: yocto

于 14-9-12 下午11:51, Philip Tricca 写道:
> Hello Xin,
>
> Just noticed that you pushed these patches to the meta-selinux repo but
> with your name and a slightly different commit message in one case.
> Other than forgetting to copy you on my initial message to the list was
> there a problem with my patches? Just want to be sure that the next time
> I send out patches I get them right if there was in fact an issue with
> these ones.
>

\x10Hi Philip,

I'm sorry that I had missed your mail before pushing.

I used to do small fixes with diectly pushing and not sending review in 
the maillist, that's why I missed your mail. In the future commits, I 
will send reivews and check the maillist carefully to avoid similar missing.

Thanks you for your contribution to meta-selinux. :)

- Pascal

> Thanks,
> Philip
>
> On 09/08/2014 08:03 AM, Philip Tricca wrote:
>> Patch set to use wildcards in the version numbers of the at and shadow
>> bbappends and to remove the 3.4 kernel bbappend.
>>
>> Philip Tricca (3):
>>    shadow: Use wildcard for version number in bbappend.
>>    at: Use wildcard for version number in bbappend.
>>    linux-yocto: Remove bbappend for old 3.4 kernel.
>>
>>   recipes-extended/at/at_%.bbappend               |    7 +++++++
>>   recipes-extended/at/at_3.1.14.bbappend          |    7 -------
>>   recipes-extended/shadow/shadow_%.bbappend       |    5 +++++
>>   recipes-extended/shadow/shadow_4.1.4.3.bbappend |    5 -----
>>   recipes-kernel/linux/linux-yocto_3.4.bbappend   |    7 -------
>>   5 files changed, 12 insertions(+), 19 deletions(-)
>>   create mode 100644 recipes-extended/at/at_%.bbappend
>>   delete mode 100644 recipes-extended/at/at_3.1.14.bbappend
>>   create mode 100644 recipes-extended/shadow/shadow_%.bbappend
>>   delete mode 100644 recipes-extended/shadow/shadow_4.1.4.3.bbappend
>>   delete mode 100644 recipes-kernel/linux/linux-yocto_3.4.bbappend
>>
>
>


-- 
- Pascal


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-09-17  5:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-09-08 12:03 [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
2014-09-08 12:03 ` [meta-selinux][PATCH 1/3] shadow: Use wildcard for version number in bbappend Philip Tricca
2014-09-08 12:03 ` [meta-selinux][PATCH 2/3] at: " Philip Tricca
2014-09-08 12:03 ` [meta-selinux][PATCH 3/3] linux-yocto: Remove bbappend for old 3.4 kernel Philip Tricca
2014-09-12 15:51 ` [meta-selinux][PATCH 0/3] Version number cleanup Philip Tricca
2014-09-17  5:53   ` Pascal Ouyang

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.