* [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD
@ 2004-08-01 18:55 Adrian Bunk
2004-08-01 19:11 ` Sam Ravnborg
0 siblings, 1 reply; 8+ messages in thread
From: Adrian Bunk @ 2004-08-01 18:55 UTC (permalink / raw)
To: Justin T. Gibbs; +Cc: Sam Ravnborg, James.Bottomley, linux-scsi, linux-kernel
The patch below lets AIC7{9,X}XX_BUILD_FIRMWARE depend on
!PREVENT_FIRMWARE_BUILD.
Signed-off-by: Adrian Bunk <bunk@fs.tum.de>
--- linux-2.6.8-rc2-mm1-full/drivers/scsi/aic7xxx/Kconfig.aic7xxx.old 2004-08-01 17:03:52.000000000 +0200
+++ linux-2.6.8-rc2-mm1-full/drivers/scsi/aic7xxx/Kconfig.aic7xxx 2004-08-01 17:04:40.000000000 +0200
@@ -61,7 +61,7 @@
config AIC7XXX_BUILD_FIRMWARE
bool "Build Adapter Firmware with Kernel Build"
- depends on SCSI_AIC7XXX
+ depends on SCSI_AIC7XXX && !PREVENT_FIRMWARE_BUILD
help
This option should only be enabled if you are modifying the firmware
source to the aic7xxx driver and wish to have the generated firmware
--- linux-2.6.8-rc2-mm1-full/drivers/scsi/aic7xxx/Kconfig.aic79xx.old 2004-08-01 17:04:01.000000000 +0200
+++ linux-2.6.8-rc2-mm1-full/drivers/scsi/aic7xxx/Kconfig.aic79xx 2004-08-01 17:04:32.000000000 +0200
@@ -46,7 +46,7 @@
config AIC79XX_BUILD_FIRMWARE
bool "Build Adapter Firmware with Kernel Build"
- depends on SCSI_AIC79XX
+ depends on SCSI_AIC79XX && !PREVENT_FIRMWARE_BUILD
help
This option should only be enabled if you are modifying the firmware
source to the aic79xx driver and wish to have the generated firmware
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD
2004-08-01 18:55 [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD Adrian Bunk
@ 2004-08-01 19:11 ` Sam Ravnborg
2004-08-01 19:16 ` Justin T. Gibbs
2004-08-03 14:47 ` Luben Tuikov
0 siblings, 2 replies; 8+ messages in thread
From: Sam Ravnborg @ 2004-08-01 19:11 UTC (permalink / raw)
To: Justin T. Gibbs, Adrian Bunk
Cc: Justin T. Gibbs, Sam Ravnborg, James.Bottomley, linux-scsi,
linux-kernel
On Sun, Aug 01, 2004 at 08:55:44PM +0200, Adrian Bunk wrote:
>
> The patch below lets AIC7{9,X}XX_BUILD_FIRMWARE depend on
> !PREVENT_FIRMWARE_BUILD.
Justin, I agree with this change. Please let me know if I shall forward
the patch to Linus, or you will take care.
Sam
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD
2004-08-01 19:11 ` Sam Ravnborg
@ 2004-08-01 19:16 ` Justin T. Gibbs
2004-08-03 14:47 ` Luben Tuikov
1 sibling, 0 replies; 8+ messages in thread
From: Justin T. Gibbs @ 2004-08-01 19:16 UTC (permalink / raw)
To: Sam Ravnborg, Adrian Bunk
Cc: James.Bottomley, linux-scsi, linux-kernel, luben_tuikov
>> The patch below lets AIC7{9,X}XX_BUILD_FIRMWARE depend on
>> !PREVENT_FIRMWARE_BUILD.
>
> Justin, I agree with this change. Please let me know if I shall forward
> the patch to Linus, or you will take care.
>
> Sam
Luben Tuikov is the current maintainer of these drivers.
--
Justin
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD
2004-08-01 19:11 ` Sam Ravnborg
2004-08-01 19:16 ` Justin T. Gibbs
@ 2004-08-03 14:47 ` Luben Tuikov
2004-08-03 16:30 ` Nathan Bryant
1 sibling, 1 reply; 8+ messages in thread
From: Luben Tuikov @ 2004-08-03 14:47 UTC (permalink / raw)
To: Sam Ravnborg
Cc: Justin T. Gibbs, Adrian Bunk, James.Bottomley, linux-scsi,
linux-kernel
Hi Sam,
You can forward it to Linus and I'll also integrate it
to the latest version of the drivers, yet to be integrated
to the mainline kernel.
Thanks!
Sam Ravnborg wrote:
> On Sun, Aug 01, 2004 at 08:55:44PM +0200, Adrian Bunk wrote:
> >
> > The patch below lets AIC7{9,X}XX_BUILD_FIRMWARE depend on
> > !PREVENT_FIRMWARE_BUILD.
>
> Justin, I agree with this change. Please let me know if I shall forward
> the patch to Linus, or you will take care.
>
> Sam
> -
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
--
Luben
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD
2004-08-03 14:47 ` Luben Tuikov
@ 2004-08-03 16:30 ` Nathan Bryant
2004-08-03 16:36 ` Arjan van de Ven
0 siblings, 1 reply; 8+ messages in thread
From: Nathan Bryant @ 2004-08-03 16:30 UTC (permalink / raw)
To: Luben Tuikov
Cc: Sam Ravnborg, Justin T. Gibbs, Adrian Bunk, James.Bottomley,
linux-scsi, linux-kernel
Luben Tuikov wrote:
> Hi Sam,
>
> You can forward it to Linus and I'll also integrate it
> to the latest version of the drivers, yet to be integrated
> to the mainline kernel.
Luben -
Are the latest drivers going to be available in BitKeeper format before
they get merged?
Thanks,
Nathan
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD
2004-08-03 16:30 ` Nathan Bryant
@ 2004-08-03 16:36 ` Arjan van de Ven
2004-08-03 17:49 ` [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on!PREVENT_FIRMWARE_BUILD Luben Tuikov
0 siblings, 1 reply; 8+ messages in thread
From: Arjan van de Ven @ 2004-08-03 16:36 UTC (permalink / raw)
To: Nathan Bryant
Cc: Luben Tuikov, Sam Ravnborg, Justin T. Gibbs, Adrian Bunk,
James.Bottomley, linux-scsi, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 515 bytes --]
On Tue, 2004-08-03 at 18:30, Nathan Bryant wrote:
> Luben Tuikov wrote:
> > Hi Sam,
> >
> > You can forward it to Linus and I'll also integrate it
> > to the latest version of the drivers, yet to be integrated
> > to the mainline kernel.
>
> Luben -
>
> Are the latest drivers going to be available in BitKeeper format before
> they get merged?
I'm sure they'll be submitted in small incremental updates which can be
submitted and merged in smaller pieces to keep testability to a
maximum....
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 189 bytes --]
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on!PREVENT_FIRMWARE_BUILD
2004-08-03 16:36 ` Arjan van de Ven
@ 2004-08-03 17:49 ` Luben Tuikov
2004-08-03 19:31 ` James Bottomley
0 siblings, 1 reply; 8+ messages in thread
From: Luben Tuikov @ 2004-08-03 17:49 UTC (permalink / raw)
To: arjanv
Cc: Nathan Bryant, Sam Ravnborg, Justin T. Gibbs, Adrian Bunk,
James.Bottomley, linux-scsi, linux-kernel
Arjan van de Ven wrote:
> On Tue, 2004-08-03 at 18:30, Nathan Bryant wrote:
>
>>Luben Tuikov wrote:
>>
>>>Hi Sam,
>>>
>>>You can forward it to Linus and I'll also integrate it
>>>to the latest version of the drivers, yet to be integrated
>>>to the mainline kernel.
>>
>>Luben -
>>
>>Are the latest drivers going to be available in BitKeeper format before
>>they get merged?
>
>
> I'm sure they'll be submitted in small incremental updates which can be
> submitted and merged in smaller pieces to keep testability to a
> maximum....
Yes, no problem. Whatever you guys want.
I can provide small incremental patches (right out of
perforce), and generate incremantal BKs (will have to look into
that).
--
Luben
^ permalink raw reply [flat|nested] 8+ messages in thread* Re: [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on!PREVENT_FIRMWARE_BUILD
2004-08-03 17:49 ` [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on!PREVENT_FIRMWARE_BUILD Luben Tuikov
@ 2004-08-03 19:31 ` James Bottomley
0 siblings, 0 replies; 8+ messages in thread
From: James Bottomley @ 2004-08-03 19:31 UTC (permalink / raw)
To: Luben Tuikov
Cc: Arjan van de Ven, Nathan Bryant, Sam Ravnborg, Justin T. Gibbs,
Adrian Bunk, SCSI Mailing List, Linux Kernel
On Tue, 2004-08-03 at 10:49, Luben Tuikov wrote:
> Yes, no problem. Whatever you guys want.
> I can provide small incremental patches (right out of
> perforce), and generate incremantal BKs (will have to look into
> that).
Actually, small incremental patches across the scsi list is what I'd
prefer. I can take care of doing the BK stuff to pull the patches
straight off the list.
James
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2004-08-03 19:32 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-01 18:55 [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on !PREVENT_FIRMWARE_BUILD Adrian Bunk
2004-08-01 19:11 ` Sam Ravnborg
2004-08-01 19:16 ` Justin T. Gibbs
2004-08-03 14:47 ` Luben Tuikov
2004-08-03 16:30 ` Nathan Bryant
2004-08-03 16:36 ` Arjan van de Ven
2004-08-03 17:49 ` [2.6 patch] let AIC7{9,X}XX_BUILD_FIRMWARE depend on!PREVENT_FIRMWARE_BUILD Luben Tuikov
2004-08-03 19:31 ` James Bottomley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox