Re: [PATCH] ARM: allow DEBUG_UNCOMPRESS for omap2plus

2013-08-02 Thread Tony Lindgren
* Stephen Warren swar...@wwwdotorg.org [130731 10:04]: On 07/31/2013 12:46 AM, Tony Lindgren wrote: I think we're best off removing the remaining uncompress code configured port detection features as the port properties are now defined in kconfig anyways. That simplifies the code quite a

Re: [PATCH] ARM: allow DEBUG_UNCOMPRESS for omap2plus

2013-08-02 Thread Russell King - ARM Linux
On Fri, Aug 02, 2013 at 12:29:25AM -0700, Tony Lindgren wrote: It seems the best strategy seems to be to just init things later on so DEBUG_LL is only needed when booting breaks really early on during the boot process. ... which is exactly the whole point and use case of DEBUG_LL. :) -- To

Re: [PATCH] ARM: allow DEBUG_UNCOMPRESS for omap2plus

2013-07-31 Thread Stephen Warren
On 07/31/2013 12:46 AM, Tony Lindgren wrote: * Stephen Warren swar...@wwwdotorg.org [130730 16:08]: On 07/30/2013 04:52 PM, Russell King - ARM Linux wrote: On Tue, Jul 30, 2013 at 04:49:18PM -0600, Stephen Warren wrote: From: Stephen Warren swar...@nvidia.com DEBUG_UNCOMPRESS was previously

[PATCH] ARM: allow DEBUG_UNCOMPRESS for omap2plus

2013-07-30 Thread Stephen Warren
From: Stephen Warren swar...@nvidia.com DEBUG_UNCOMPRESS was previously disallowed for omap2plus due to omap2plus.S's use of .data, which is not allowed in the decompressor. Solve this by placing that data into .text when building the file into the decompressor. This relies on .text actually

Re: [PATCH] ARM: allow DEBUG_UNCOMPRESS for omap2plus

2013-07-30 Thread Russell King - ARM Linux
On Tue, Jul 30, 2013 at 04:49:18PM -0600, Stephen Warren wrote: From: Stephen Warren swar...@nvidia.com DEBUG_UNCOMPRESS was previously disallowed for omap2plus due to omap2plus.S's use of .data, which is not allowed in the decompressor. Solve this by placing that data into .text when

Re: [PATCH] ARM: allow DEBUG_UNCOMPRESS for omap2plus

2013-07-30 Thread Stephen Warren
On 07/30/2013 04:52 PM, Russell King - ARM Linux wrote: On Tue, Jul 30, 2013 at 04:49:18PM -0600, Stephen Warren wrote: From: Stephen Warren swar...@nvidia.com DEBUG_UNCOMPRESS was previously disallowed for omap2plus due to omap2plus.S's use of .data, which is not allowed in the decompressor.