All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO
@ 2012-05-17 10:07 Koen Kooi
  2012-05-17 10:07 ` [PATCH 2/2] linux-ti33x-psp 3.2: correct PV for non-tipsp distros Koen Kooi
  2012-05-17 18:32 ` [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO Denys Dmytriyenko
  0 siblings, 2 replies; 6+ messages in thread
From: Koen Kooi @ 2012-05-17 10:07 UTC (permalink / raw)
  To: meta-ti; +Cc: denys

This keeps them from appearing on the screen during quiet boots. They are still being reported, so no info is lost.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
 ...pws-phy_device-demote-PHY-message-to-INFO.patch |   51 ++++++++++++++++++++
 recipes-kernel/linux/linux-ti33x-psp_3.2.bb        |    3 +-
 2 files changed, 53 insertions(+), 1 deletion(-)
 create mode 100644 recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch

diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
new file mode 100644
index 0000000..2aed646
--- /dev/null
+++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
@@ -0,0 +1,51 @@
+From 04924dfd0335b8adca0e7783112827df30e70a5f Mon Sep 17 00:00:00 2001
+From: Koen Kooi <koen@dominion.thruhere.net>
+Date: Thu, 17 May 2012 10:59:18 +0200
+Subject: [PATCH] cpsw,phy_device: demote PHY message to INFO
+
+This keeps them from appearing on the screen when booting with 'quiet'
+
+Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
+---
+ drivers/net/ethernet/ti/cpsw.c |    2 +-
+ drivers/net/phy/phy_device.c   |    4 ++--
+ 2 files changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
+index 86fe57d..d10996d 100644
+--- a/drivers/net/ethernet/ti/cpsw.c
++++ b/drivers/net/ethernet/ti/cpsw.c
+@@ -638,7 +638,7 @@ static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
+ 		    slave->data->phy_id, slave->slave_num);
+ 		slave->phy = NULL;
+ 	} else {
+-		printk(KERN_ERR"\nCPSW phy found : id is : 0x%x\n",
++		printk(KERN_INFO"\nCPSW phy found : id is : 0x%x\n",
+ 			slave->phy->phy_id);
+ 		cpsw_set_phy_config(priv, slave->phy);
+ 		phy_start(slave->phy);
+diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
+index 83a5a5a..8b84789 100644
+--- a/drivers/net/phy/phy_device.c
++++ b/drivers/net/phy/phy_device.c
+@@ -380,7 +380,7 @@ struct phy_device * phy_connect(struct net_device *dev, const char *bus_id,
+ 	 * PHY with the requested name */
+ 	d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
+ 	if (!d) {
+-		pr_err("PHY %s not found\n", bus_id);
++		pr_info("PHY %s not found\n", bus_id);
+ 		return ERR_PTR(-ENODEV);
+ 	}
+ 	phydev = to_phy_device(d);
+@@ -503,7 +503,7 @@ struct phy_device *phy_attach(struct net_device *dev,
+ 	 * PHY with the requested name */
+ 	d = bus_find_device_by_name(bus, NULL, bus_id);
+ 	if (!d) {
+-		pr_err("PHY %s not found\n", bus_id);
++		pr_info("PHY %s not found\n", bus_id);
+ 		return ERR_PTR(-ENODEV);
+ 	}
+ 	phydev = to_phy_device(d);
+-- 
+1.7.7.6
+
diff --git a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
index 6c5056a..0fe3d4f 100644
--- a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
+++ b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
@@ -12,7 +12,7 @@ MULTI_CONFIG_BASE_SUFFIX = ""
 
 BRANCH = "v3.2-staging"
 SRCREV = "720e07b4c1f687b61b147b31c698cb6816d72f01"
-MACHINE_KERNEL_PR_append = "k+gitr${SRCREV}"
+MACHINE_KERNEL_PR_append = "l+gitr${SRCREV}"
 
 COMPATIBLE_MACHINE = "(ti33x)"
 
@@ -970,4 +970,5 @@ PATCHES_OVER_PSP = " \
     file://beaglebone/0043-st7735fb-Working-WIP-changes-to-make-DMA-safe-and-ad.patch \
 	file://beaglebone/0044-omap-hwmod-silence-st_shift-error.patch \
 	file://beaglebone/0001-arm-boot-compressed-default-asm-arch-to-armv7-a.patch \
+	file://beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch \
 "
-- 
1.7.10



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

* [PATCH 2/2] linux-ti33x-psp 3.2: correct PV for non-tipsp distros
  2012-05-17 10:07 [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO Koen Kooi
@ 2012-05-17 10:07 ` Koen Kooi
  2012-05-17 18:28   ` Denys Dmytriyenko
  2012-05-17 18:32 ` [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO Denys Dmytriyenko
  1 sibling, 1 reply; 6+ messages in thread
From: Koen Kooi @ 2012-05-17 10:07 UTC (permalink / raw)
  To: meta-ti; +Cc: denys

The patchset updates the kernel to 3.2.x, so make PV match.
This doesn't need PR or MACHINE_KERNEL_PR bumps since the both the kernel ABI and file locations remain the same.

Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
---
 recipes-kernel/linux/linux-ti33x-psp_3.2.bb |    4 ++++
 1 file changed, 4 insertions(+)

diff --git a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
index 0fe3d4f..efc5adb 100644
--- a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
+++ b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
@@ -10,6 +10,10 @@ S = "${WORKDIR}/git"
 
 MULTI_CONFIG_BASE_SUFFIX = ""
 
+# the PATCHES_OVER_PSP updates it to 3.2.x, so adjust PV to match
+PV = "${@base_contains('DISTRO_FEATURES', 'tipspkernel', "3.2", "3.2.16", d)}"
+FILESPATH =. "${FILE_DIRNAME}/${PN}-3.2:${FILE_DIRNAME}/${PN}-3.2/${MACHINE}:"
+
 BRANCH = "v3.2-staging"
 SRCREV = "720e07b4c1f687b61b147b31c698cb6816d72f01"
 MACHINE_KERNEL_PR_append = "l+gitr${SRCREV}"
-- 
1.7.10



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

* Re: [PATCH 2/2] linux-ti33x-psp 3.2: correct PV for non-tipsp distros
  2012-05-17 10:07 ` [PATCH 2/2] linux-ti33x-psp 3.2: correct PV for non-tipsp distros Koen Kooi
@ 2012-05-17 18:28   ` Denys Dmytriyenko
  2012-05-17 19:31     ` Koen Kooi
  0 siblings, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2012-05-17 18:28 UTC (permalink / raw)
  To: Koen Kooi; +Cc: meta-ti, denys

On Thu, May 17, 2012 at 12:07:07PM +0200, Koen Kooi wrote:
> The patchset updates the kernel to 3.2.x, so make PV match.
> This doesn't need PR or MACHINE_KERNEL_PR bumps since the both the kernel ABI and file locations remain the same.
> 
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
>  recipes-kernel/linux/linux-ti33x-psp_3.2.bb |    4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
> index 0fe3d4f..efc5adb 100644
> --- a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
> +++ b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
> @@ -10,6 +10,10 @@ S = "${WORKDIR}/git"
>  
>  MULTI_CONFIG_BASE_SUFFIX = ""
>  
> +# the PATCHES_OVER_PSP updates it to 3.2.x, so adjust PV to match
> +PV = "${@base_contains('DISTRO_FEATURES', 'tipspkernel', "3.2", "3.2.16", d)}"
> +FILESPATH =. "${FILE_DIRNAME}/${PN}-3.2:${FILE_DIRNAME}/${PN}-3.2/${MACHINE}:"

Are you planning to use ${PN}-3.2.16 in FILESPATH for patches or defconfigs? 
If not, I'd like to try to fix it differently...

-- 
Denys

> +
>  BRANCH = "v3.2-staging"
>  SRCREV = "720e07b4c1f687b61b147b31c698cb6816d72f01"
>  MACHINE_KERNEL_PR_append = "l+gitr${SRCREV}"
> -- 
> 1.7.10
> 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
> 


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

* Re: [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO
  2012-05-17 10:07 [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO Koen Kooi
  2012-05-17 10:07 ` [PATCH 2/2] linux-ti33x-psp 3.2: correct PV for non-tipsp distros Koen Kooi
@ 2012-05-17 18:32 ` Denys Dmytriyenko
  2012-05-17 19:30   ` Koen Kooi
  1 sibling, 1 reply; 6+ messages in thread
From: Denys Dmytriyenko @ 2012-05-17 18:32 UTC (permalink / raw)
  To: Koen Kooi; +Cc: meta-ti, denys

On Thu, May 17, 2012 at 12:07:06PM +0200, Koen Kooi wrote:
> This keeps them from appearing on the screen during quiet boots. They are still being reported, so no info is lost.
> 
> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> ---
>  ...pws-phy_device-demote-PHY-message-to-INFO.patch |   51 ++++++++++++++++++++
>  recipes-kernel/linux/linux-ti33x-psp_3.2.bb        |    3 +-
>  2 files changed, 53 insertions(+), 1 deletion(-)
>  create mode 100644 recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
> 
> diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
> new file mode 100644
> index 0000000..2aed646
> --- /dev/null
> +++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
> @@ -0,0 +1,51 @@
> +From 04924dfd0335b8adca0e7783112827df30e70a5f Mon Sep 17 00:00:00 2001
> +From: Koen Kooi <koen@dominion.thruhere.net>
> +Date: Thu, 17 May 2012 10:59:18 +0200
> +Subject: [PATCH] cpsw,phy_device: demote PHY message to INFO
> +
> +This keeps them from appearing on the screen when booting with 'quiet'
> +
> +Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
> +---
> + drivers/net/ethernet/ti/cpsw.c |    2 +-
> + drivers/net/phy/phy_device.c   |    4 ++--
> + 2 files changed, 3 insertions(+), 3 deletions(-)
> +
> +diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
> +index 86fe57d..d10996d 100644
> +--- a/drivers/net/ethernet/ti/cpsw.c
> ++++ b/drivers/net/ethernet/ti/cpsw.c
> +@@ -638,7 +638,7 @@ static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
> + 		    slave->data->phy_id, slave->slave_num);
> + 		slave->phy = NULL;
> + 	} else {
> +-		printk(KERN_ERR"\nCPSW phy found : id is : 0x%x\n",
> ++		printk(KERN_INFO"\nCPSW phy found : id is : 0x%x\n",
> + 			slave->phy->phy_id);
> + 		cpsw_set_phy_config(priv, slave->phy);
> + 		phy_start(slave->phy);
> +diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
> +index 83a5a5a..8b84789 100644
> +--- a/drivers/net/phy/phy_device.c
> ++++ b/drivers/net/phy/phy_device.c
> +@@ -380,7 +380,7 @@ struct phy_device * phy_connect(struct net_device *dev, const char *bus_id,
> + 	 * PHY with the requested name */
> + 	d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
> + 	if (!d) {
> +-		pr_err("PHY %s not found\n", bus_id);
> ++		pr_info("PHY %s not found\n", bus_id);
> + 		return ERR_PTR(-ENODEV);
> + 	}
> + 	phydev = to_phy_device(d);
> +@@ -503,7 +503,7 @@ struct phy_device *phy_attach(struct net_device *dev,
> + 	 * PHY with the requested name */
> + 	d = bus_find_device_by_name(bus, NULL, bus_id);
> + 	if (!d) {
> +-		pr_err("PHY %s not found\n", bus_id);
> ++		pr_info("PHY %s not found\n", bus_id);
> + 		return ERR_PTR(-ENODEV);
> + 	}
> + 	phydev = to_phy_device(d);
> +-- 
> +1.7.7.6
> +
> diff --git a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
> index 6c5056a..0fe3d4f 100644
> --- a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
> +++ b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
> @@ -12,7 +12,7 @@ MULTI_CONFIG_BASE_SUFFIX = ""
>  
>  BRANCH = "v3.2-staging"
>  SRCREV = "720e07b4c1f687b61b147b31c698cb6816d72f01"
> -MACHINE_KERNEL_PR_append = "k+gitr${SRCREV}"
> +MACHINE_KERNEL_PR_append = "l+gitr${SRCREV}"
>  
>  COMPATIBLE_MACHINE = "(ti33x)"
>  
> @@ -970,4 +970,5 @@ PATCHES_OVER_PSP = " \
>      file://beaglebone/0043-st7735fb-Working-WIP-changes-to-make-DMA-safe-and-ad.patch \
>  	file://beaglebone/0044-omap-hwmod-silence-st_shift-error.patch \

This 0044 patch seems to be missing - did you forget to submit it?

-- 
Denys

>  	file://beaglebone/0001-arm-boot-compressed-default-asm-arch-to-armv7-a.patch \
> +	file://beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch \
>  "
> -- 
> 1.7.10
> 
> _______________________________________________
> meta-ti mailing list
> meta-ti@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-ti
> 


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

* Re: [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO
  2012-05-17 18:32 ` [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO Denys Dmytriyenko
@ 2012-05-17 19:30   ` Koen Kooi
  0 siblings, 0 replies; 6+ messages in thread
From: Koen Kooi @ 2012-05-17 19:30 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, denys


Op 17 mei 2012, om 20:32 heeft Denys Dmytriyenko het volgende geschreven:

> On Thu, May 17, 2012 at 12:07:06PM +0200, Koen Kooi wrote:
>> This keeps them from appearing on the screen during quiet boots. They are still being reported, so no info is lost.
>> 
>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>> ---
>> ...pws-phy_device-demote-PHY-message-to-INFO.patch |   51 ++++++++++++++++++++
>> recipes-kernel/linux/linux-ti33x-psp_3.2.bb        |    3 +-
>> 2 files changed, 53 insertions(+), 1 deletion(-)
>> create mode 100644 recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
>> 
>> diff --git a/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
>> new file mode 100644
>> index 0000000..2aed646
>> --- /dev/null
>> +++ b/recipes-kernel/linux/linux-ti33x-psp-3.2/beaglebone/0045-cpws-phy_device-demote-PHY-message-to-INFO.patch
>> @@ -0,0 +1,51 @@
>> +From 04924dfd0335b8adca0e7783112827df30e70a5f Mon Sep 17 00:00:00 2001
>> +From: Koen Kooi <koen@dominion.thruhere.net>
>> +Date: Thu, 17 May 2012 10:59:18 +0200
>> +Subject: [PATCH] cpsw,phy_device: demote PHY message to INFO
>> +
>> +This keeps them from appearing on the screen when booting with 'quiet'
>> +
>> +Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>> +---
>> + drivers/net/ethernet/ti/cpsw.c |    2 +-
>> + drivers/net/phy/phy_device.c   |    4 ++--
>> + 2 files changed, 3 insertions(+), 3 deletions(-)
>> +
>> +diff --git a/drivers/net/ethernet/ti/cpsw.c b/drivers/net/ethernet/ti/cpsw.c
>> +index 86fe57d..d10996d 100644
>> +--- a/drivers/net/ethernet/ti/cpsw.c
>> ++++ b/drivers/net/ethernet/ti/cpsw.c
>> +@@ -638,7 +638,7 @@ static void cpsw_slave_open(struct cpsw_slave *slave, struct cpsw_priv *priv)
>> + 		    slave->data->phy_id, slave->slave_num);
>> + 		slave->phy = NULL;
>> + 	} else {
>> +-		printk(KERN_ERR"\nCPSW phy found : id is : 0x%x\n",
>> ++		printk(KERN_INFO"\nCPSW phy found : id is : 0x%x\n",
>> + 			slave->phy->phy_id);
>> + 		cpsw_set_phy_config(priv, slave->phy);
>> + 		phy_start(slave->phy);
>> +diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
>> +index 83a5a5a..8b84789 100644
>> +--- a/drivers/net/phy/phy_device.c
>> ++++ b/drivers/net/phy/phy_device.c
>> +@@ -380,7 +380,7 @@ struct phy_device * phy_connect(struct net_device *dev, const char *bus_id,
>> + 	 * PHY with the requested name */
>> + 	d = bus_find_device_by_name(&mdio_bus_type, NULL, bus_id);
>> + 	if (!d) {
>> +-		pr_err("PHY %s not found\n", bus_id);
>> ++		pr_info("PHY %s not found\n", bus_id);
>> + 		return ERR_PTR(-ENODEV);
>> + 	}
>> + 	phydev = to_phy_device(d);
>> +@@ -503,7 +503,7 @@ struct phy_device *phy_attach(struct net_device *dev,
>> + 	 * PHY with the requested name */
>> + 	d = bus_find_device_by_name(bus, NULL, bus_id);
>> + 	if (!d) {
>> +-		pr_err("PHY %s not found\n", bus_id);
>> ++		pr_info("PHY %s not found\n", bus_id);
>> + 		return ERR_PTR(-ENODEV);
>> + 	}
>> + 	phydev = to_phy_device(d);
>> +-- 
>> +1.7.7.6
>> +
>> diff --git a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
>> index 6c5056a..0fe3d4f 100644
>> --- a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
>> +++ b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
>> @@ -12,7 +12,7 @@ MULTI_CONFIG_BASE_SUFFIX = ""
>> 
>> BRANCH = "v3.2-staging"
>> SRCREV = "720e07b4c1f687b61b147b31c698cb6816d72f01"
>> -MACHINE_KERNEL_PR_append = "k+gitr${SRCREV}"
>> +MACHINE_KERNEL_PR_append = "l+gitr${SRCREV}"
>> 
>> COMPATIBLE_MACHINE = "(ti33x)"
>> 
>> @@ -970,4 +970,5 @@ PATCHES_OVER_PSP = " \
>>     file://beaglebone/0043-st7735fb-Working-WIP-changes-to-make-DMA-safe-and-ad.patch \
>> 	file://beaglebone/0044-omap-hwmod-silence-st_shift-error.patch \
> 
> This 0044 patch seems to be missing - did you forget to submit it?

No, it's a discrepancy caused by git-am -3 auto dropping patches. The upstream patch scripts merges in .17, which I want to hold of on for a few days till after the A6 build.

regards,

Koen

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

* Re: [PATCH 2/2] linux-ti33x-psp 3.2: correct PV for non-tipsp distros
  2012-05-17 18:28   ` Denys Dmytriyenko
@ 2012-05-17 19:31     ` Koen Kooi
  0 siblings, 0 replies; 6+ messages in thread
From: Koen Kooi @ 2012-05-17 19:31 UTC (permalink / raw)
  To: Denys Dmytriyenko; +Cc: meta-ti, denys


Op 17 mei 2012, om 20:28 heeft Denys Dmytriyenko het volgende geschreven:

> On Thu, May 17, 2012 at 12:07:07PM +0200, Koen Kooi wrote:
>> The patchset updates the kernel to 3.2.x, so make PV match.
>> This doesn't need PR or MACHINE_KERNEL_PR bumps since the both the kernel ABI and file locations remain the same.
>> 
>> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
>> ---
>> recipes-kernel/linux/linux-ti33x-psp_3.2.bb |    4 ++++
>> 1 file changed, 4 insertions(+)
>> 
>> diff --git a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
>> index 0fe3d4f..efc5adb 100644
>> --- a/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
>> +++ b/recipes-kernel/linux/linux-ti33x-psp_3.2.bb
>> @@ -10,6 +10,10 @@ S = "${WORKDIR}/git"
>> 
>> MULTI_CONFIG_BASE_SUFFIX = ""
>> 
>> +# the PATCHES_OVER_PSP updates it to 3.2.x, so adjust PV to match
>> +PV = "${@base_contains('DISTRO_FEATURES', 'tipspkernel', "3.2", "3.2.16", d)}"
>> +FILESPATH =. "${FILE_DIRNAME}/${PN}-3.2:${FILE_DIRNAME}/${PN}-3.2/${MACHINE}:"
> 
> Are you planning to use ${PN}-3.2.16 in FILESPATH for patches or defconfigs? 
> If not, I'd like to try to fix it differently...

I went for the minimal patch, I have no objection to you fixing it properly :)

regards,

Koen

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

end of thread, other threads:[~2012-05-17 19:31 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-17 10:07 [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO Koen Kooi
2012-05-17 10:07 ` [PATCH 2/2] linux-ti33x-psp 3.2: correct PV for non-tipsp distros Koen Kooi
2012-05-17 18:28   ` Denys Dmytriyenko
2012-05-17 19:31     ` Koen Kooi
2012-05-17 18:32 ` [PATCH 1/2] linux-ti33x-psp 3.2: demote cpsw PHY message to INFO Denys Dmytriyenko
2012-05-17 19:30   ` Koen Kooi

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.