* [PATCH 0/2] URL cleanup in Documentation/SubmittingPatches
@ 2014-03-25 23:49 Mitchel Humpherys
2014-03-25 23:49 ` [PATCH 1/2] Documentation/SubmittingPatches: update some dead URLs Mitchel Humpherys
2014-03-25 23:49 ` [PATCH 2/2] Documentation/SubmittingPatches: remove references to patch-scripts Mitchel Humpherys
0 siblings, 2 replies; 5+ messages in thread
From: Mitchel Humpherys @ 2014-03-25 23:49 UTC (permalink / raw)
To: Rob Landley; +Cc: linux-doc, linux-kernel, Mitchel Humpherys
Some URLs in Documentation/SubmittingPatches have gone stale. This
series cleans some of them up by removing or updating them.
Mitchel Humpherys (2):
Documentation/SubmittingPatches: update some dead URLs
Documentation/SubmittingPatches: remove references to patch-scripts
Documentation/SubmittingPatches | 9 ++-------
Documentation/ja_JP/SubmittingPatches | 9 ++-------
Documentation/zh_CN/SubmittingPatches | 8 ++------
3 files changed, 6 insertions(+), 20 deletions(-)
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
^ permalink raw reply [flat|nested] 5+ messages in thread
* [PATCH 1/2] Documentation/SubmittingPatches: update some dead URLs
2014-03-25 23:49 [PATCH 0/2] URL cleanup in Documentation/SubmittingPatches Mitchel Humpherys
@ 2014-03-25 23:49 ` Mitchel Humpherys
2014-03-25 23:49 ` [PATCH 2/2] Documentation/SubmittingPatches: remove references to patch-scripts Mitchel Humpherys
1 sibling, 0 replies; 5+ messages in thread
From: Mitchel Humpherys @ 2014-03-25 23:49 UTC (permalink / raw)
To: Rob Landley; +Cc: linux-doc, linux-kernel, Mitchel Humpherys
The links to "The perfect patch" and "NO!!!! No more huge patch
bombs..." have gone stale. Update them to some working locations.
Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org>
---
Documentation/SubmittingPatches | 4 ++--
Documentation/ja_JP/SubmittingPatches | 4 ++--
Documentation/zh_CN/SubmittingPatches | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches
index 26b1e31d5a..af80689517 100644
--- a/Documentation/SubmittingPatches
+++ b/Documentation/SubmittingPatches
@@ -725,7 +725,7 @@ SECTION 3 - REFERENCES
----------------------
Andrew Morton, "The perfect patch" (tpp).
- <http://userweb.kernel.org/~akpm/stuff/tpp.txt>
+ <http://www.ozlabs.org/~akpm/stuff/tpp.txt>
Jeff Garzik, "Linux kernel patch submission format".
<http://linux.yyz.us/patch-format.html>
@@ -738,7 +738,7 @@ Greg Kroah-Hartman, "How to piss off a kernel subsystem maintainer".
<http://www.kroah.com/log/linux/maintainer-05.html>
NO!!!! No more huge patch bombs to linux-kernel@vger.kernel.org people!
- <http://marc.theaimsgroup.com/?l=linux-kernel&m=112112749912944&w=2>
+ <https://lkml.org/lkml/2005/7/11/336>
Kernel Documentation/CodingStyle:
<http://users.sosdg.org/~qiyong/lxr/source/Documentation/CodingStyle>
diff --git a/Documentation/ja_JP/SubmittingPatches b/Documentation/ja_JP/SubmittingPatches
index 97f78dd0c0..ff6cb5729c 100644
--- a/Documentation/ja_JP/SubmittingPatches
+++ b/Documentation/ja_JP/SubmittingPatches
@@ -695,7 +695,7 @@ gcc においては、マクロと同じくらい軽いです。
----------------------
Andrew Morton, "The perfect patch" (tpp).
- <http://userweb.kernel.org/~akpm/stuff/tpp.txt>
+ <http://www.ozlabs.org/~akpm/stuff/tpp.txt>
Jeff Garzik, "Linux kernel patch submission format".
<http://linux.yyz.us/patch-format.html>
@@ -707,7 +707,7 @@ Greg Kroah-Hartman, "How to piss off a kernel subsystem maintainer".
<http://www.kroah.com/log/2006/01/11/>
NO!!!! No more huge patch bombs to linux-kernel@vger.kernel.org people!
- <http://marc.theaimsgroup.com/?l=linux-kernel&m=112112749912944&w=2>
+ <https://lkml.org/lkml/2005/7/11/336>
Kernel Documentation/CodingStyle:
<http://users.sosdg.org/~qiyong/lxr/source/Documentation/CodingStyle>
diff --git a/Documentation/zh_CN/SubmittingPatches b/Documentation/zh_CN/SubmittingPatches
index be0bd47250..788ab47303 100644
--- a/Documentation/zh_CN/SubmittingPatches
+++ b/Documentation/zh_CN/SubmittingPatches
@@ -394,7 +394,7 @@ Static inline 函数相比宏来说,是好得多的选择。Static inline 函
----------------
Andrew Morton, "The perfect patch" (tpp).
- <http://userweb.kernel.org/~akpm/stuff/tpp.txt>
+ <http://www.ozlabs.org/~akpm/stuff/tpp.txt>
Jeff Garzik, "Linux kernel patch submission format".
<http://linux.yyz.us/patch-format.html>
@@ -406,7 +406,7 @@ Greg Kroah-Hartman, "How to piss off a kernel subsystem maintainer".
<http://www.kroah.com/log/2006/01/11/>
NO!!!! No more huge patch bombs to linux-kernel@vger.kernel.org people!
- <http://marc.theaimsgroup.com/?l=linux-kernel&m=112112749912944&w=2>
+ <https://lkml.org/lkml/2005/7/11/336>
Kernel Documentation/CodingStyle:
<http://sosdg.org/~coywolf/lxr/source/Documentation/CodingStyle>
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [PATCH 2/2] Documentation/SubmittingPatches: remove references to patch-scripts
2014-03-25 23:49 [PATCH 0/2] URL cleanup in Documentation/SubmittingPatches Mitchel Humpherys
2014-03-25 23:49 ` [PATCH 1/2] Documentation/SubmittingPatches: update some dead URLs Mitchel Humpherys
@ 2014-03-25 23:49 ` Mitchel Humpherys
2014-03-26 8:51 ` Geert Uytterhoeven
1 sibling, 1 reply; 5+ messages in thread
From: Mitchel Humpherys @ 2014-03-25 23:49 UTC (permalink / raw)
To: Rob Landley; +Cc: linux-doc, linux-kernel, Mitchel Humpherys
The link to the tarball for Andrew Morton's patch scripts is dead. These
scripts don't seem to be used for kernel development these days anyways
so just rip out all references to them.
Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org>
---
Documentation/SubmittingPatches | 5 -----
Documentation/ja_JP/SubmittingPatches | 5 -----
Documentation/zh_CN/SubmittingPatches | 4 ----
3 files changed, 14 deletions(-)
diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches
index af80689517..3294469efd 100644
--- a/Documentation/SubmittingPatches
+++ b/Documentation/SubmittingPatches
@@ -75,11 +75,6 @@ There are a number of scripts which can aid in this:
Quilt:
http://savannah.nongnu.org/projects/quilt
-Andrew Morton's patch scripts:
-http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
-Instead of these scripts, quilt is the recommended patch management
-tool (see above).
-
2) Describe your changes.
diff --git a/Documentation/ja_JP/SubmittingPatches b/Documentation/ja_JP/SubmittingPatches
index ff6cb5729c..5d6ae639bf 100644
--- a/Documentation/ja_JP/SubmittingPatches
+++ b/Documentation/ja_JP/SubmittingPatches
@@ -98,11 +98,6 @@ dontdiff ファイルには Linux カーネルのビルドプロセスの過程
Quilt:
http://savannah.nongnu.org/projects/quilt
-Andrew Morton's patch scripts:
-http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
-このリンクの先のスクリプトの代わりとして、quilt がパッチマネジメント
-ツールとして推奨されています(上のリンクを見てください)。
-
2) パッチに対する説明
パッチの中の変更点に対する技術的な詳細について説明してください。
diff --git a/Documentation/zh_CN/SubmittingPatches b/Documentation/zh_CN/SubmittingPatches
index 788ab47303..1d3a10f874 100644
--- a/Documentation/zh_CN/SubmittingPatches
+++ b/Documentation/zh_CN/SubmittingPatches
@@ -82,10 +82,6 @@ Documentation/SubmittingDrivers 。
Quilt:
http://savannah.nongnu.org/projects/quilt
-Andrew Morton 的补丁脚本:
-http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
-作为这些脚本的替代,quilt 是值得推荐的补丁管理工具(看上面的链接)。
-
2)描述你的改动。
描述你的改动包含的技术细节。
--
The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
hosted by The Linux Foundation
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] Documentation/SubmittingPatches: remove references to patch-scripts
2014-03-25 23:49 ` [PATCH 2/2] Documentation/SubmittingPatches: remove references to patch-scripts Mitchel Humpherys
@ 2014-03-26 8:51 ` Geert Uytterhoeven
2014-03-26 15:14 ` Randy Dunlap
0 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2014-03-26 8:51 UTC (permalink / raw)
To: Mitchel Humpherys
Cc: Rob Landley, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, Andrew Morton
(cc akpm, who still uses these scripts, while the rest of the world
moved to git ;-)
On Wed, Mar 26, 2014 at 12:49 AM, Mitchel Humpherys
<mitchelh@codeaurora.org> wrote:
> The link to the tarball for Andrew Morton's patch scripts is dead. These
> scripts don't seem to be used for kernel development these days anyways
> so just rip out all references to them.
>
> Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org>
> ---
> Documentation/SubmittingPatches | 5 -----
> Documentation/ja_JP/SubmittingPatches | 5 -----
> Documentation/zh_CN/SubmittingPatches | 4 ----
> 3 files changed, 14 deletions(-)
>
> diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches
> index af80689517..3294469efd 100644
> --- a/Documentation/SubmittingPatches
> +++ b/Documentation/SubmittingPatches
> @@ -75,11 +75,6 @@ There are a number of scripts which can aid in this:
> Quilt:
> http://savannah.nongnu.org/projects/quilt
>
> -Andrew Morton's patch scripts:
> -http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
> -Instead of these scripts, quilt is the recommended patch management
> -tool (see above).
> -
>
>
> 2) Describe your changes.
> diff --git a/Documentation/ja_JP/SubmittingPatches b/Documentation/ja_JP/SubmittingPatches
> index ff6cb5729c..5d6ae639bf 100644
> --- a/Documentation/ja_JP/SubmittingPatches
> +++ b/Documentation/ja_JP/SubmittingPatches
> @@ -98,11 +98,6 @@ dontdiff ファイルには Linux カーネルのビルドプロセスの過程
> Quilt:
> http://savannah.nongnu.org/projects/quilt
>
> -Andrew Morton's patch scripts:
> -http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
> -このリンクの先のスクリプトの代わりとして、quilt がパッチマネジメント
> -ツールとして推奨されています(上のリンクを見てください)。
> -
> 2) パッチに対する説明
>
> パッチの中の変更点に対する技術的な詳細について説明してください。
> diff --git a/Documentation/zh_CN/SubmittingPatches b/Documentation/zh_CN/SubmittingPatches
> index 788ab47303..1d3a10f874 100644
> --- a/Documentation/zh_CN/SubmittingPatches
> +++ b/Documentation/zh_CN/SubmittingPatches
> @@ -82,10 +82,6 @@ Documentation/SubmittingDrivers 。
> Quilt:
> http://savannah.nongnu.org/projects/quilt
>
> -Andrew Morton 的补丁脚本:
> -http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
> -作为这些脚本的替代,quilt 是值得推荐的补丁管理工具(看上面的链接)。
> -
> 2)描述你的改动。
> 描述你的改动包含的技术细节。
>
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> hosted by The Linux Foundation
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
--
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH 2/2] Documentation/SubmittingPatches: remove references to patch-scripts
2014-03-26 8:51 ` Geert Uytterhoeven
@ 2014-03-26 15:14 ` Randy Dunlap
0 siblings, 0 replies; 5+ messages in thread
From: Randy Dunlap @ 2014-03-26 15:14 UTC (permalink / raw)
To: Geert Uytterhoeven, Mitchel Humpherys
Cc: Rob Landley, linux-doc@vger.kernel.org,
linux-kernel@vger.kernel.org, Andrew Morton
On 03/26/2014 01:51 AM, Geert Uytterhoeven wrote:
> (cc akpm, who still uses these scripts, while the rest of the world
> moved to git ;-)
no, some of us still use quilt.
>
> On Wed, Mar 26, 2014 at 12:49 AM, Mitchel Humpherys
> <mitchelh@codeaurora.org> wrote:
>> The link to the tarball for Andrew Morton's patch scripts is dead. These
>> scripts don't seem to be used for kernel development these days anyways
>> so just rip out all references to them.
>>
>> Signed-off-by: Mitchel Humpherys <mitchelh@codeaurora.org>
>> ---
>> Documentation/SubmittingPatches | 5 -----
>> Documentation/ja_JP/SubmittingPatches | 5 -----
>> Documentation/zh_CN/SubmittingPatches | 4 ----
>> 3 files changed, 14 deletions(-)
>>
>> diff --git a/Documentation/SubmittingPatches b/Documentation/SubmittingPatches
>> index af80689517..3294469efd 100644
>> --- a/Documentation/SubmittingPatches
>> +++ b/Documentation/SubmittingPatches
>> @@ -75,11 +75,6 @@ There are a number of scripts which can aid in this:
>> Quilt:
>> http://savannah.nongnu.org/projects/quilt
>>
>> -Andrew Morton's patch scripts:
>> -http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
>> -Instead of these scripts, quilt is the recommended patch management
>> -tool (see above).
>> -
>>
>>
>> 2) Describe your changes.
>> diff --git a/Documentation/ja_JP/SubmittingPatches b/Documentation/ja_JP/SubmittingPatches
>> index ff6cb5729c..5d6ae639bf 100644
>> --- a/Documentation/ja_JP/SubmittingPatches
>> +++ b/Documentation/ja_JP/SubmittingPatches
>> @@ -98,11 +98,6 @@ dontdiff ファイルには Linux カーネルのビルドプロセスの過程
>> Quilt:
>> http://savannah.nongnu.org/projects/quilt
>>
>> -Andrew Morton's patch scripts:
>> -http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
>> -このリンクの先のスクリプトの代わりとして、quilt がパッチマネジメント
>> -ツールとして推奨されています(上のリンクを見てください)。
>> -
>> 2) パッチに対する説明
>>
>> パッチの中の変更点に対する技術的な詳細について説明してください。
>> diff --git a/Documentation/zh_CN/SubmittingPatches b/Documentation/zh_CN/SubmittingPatches
>> index 788ab47303..1d3a10f874 100644
>> --- a/Documentation/zh_CN/SubmittingPatches
>> +++ b/Documentation/zh_CN/SubmittingPatches
>> @@ -82,10 +82,6 @@ Documentation/SubmittingDrivers 。
>> Quilt:
>> http://savannah.nongnu.org/projects/quilt
>>
>> -Andrew Morton 的补丁脚本:
>> -http://userweb.kernel.org/~akpm/stuff/patch-scripts.tar.gz
>> -作为这些脚本的替代,quilt 是值得推荐的补丁管理工具(看上面的链接)。
>> -
>> 2)描述你的改动。
>> 描述你的改动包含的技术细节。
>>
>> --
>> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
>> hosted by The Linux Foundation
--
~Randy
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2014-03-26 15:14 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-25 23:49 [PATCH 0/2] URL cleanup in Documentation/SubmittingPatches Mitchel Humpherys
2014-03-25 23:49 ` [PATCH 1/2] Documentation/SubmittingPatches: update some dead URLs Mitchel Humpherys
2014-03-25 23:49 ` [PATCH 2/2] Documentation/SubmittingPatches: remove references to patch-scripts Mitchel Humpherys
2014-03-26 8:51 ` Geert Uytterhoeven
2014-03-26 15:14 ` Randy Dunlap
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox