All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] docs/zh_CN: add Chinese index file
@ 2021-01-07  2:23 Yanteng Si
  2021-01-07  2:23 ` [PATCH v2 2/2] docs/zh_CN: add Chinese booting file Yanteng Si
  2021-01-07  3:20 ` [PATCH v2 1/2] docs/zh_CN: add Chinese index file Alex Shi
  0 siblings, 2 replies; 5+ messages in thread
From: Yanteng Si @ 2021-01-07  2:23 UTC (permalink / raw)
  To: Harry Wei
  Cc: Alex Shi, Jonathan Corbet, linux-doc, Huacai Chen, Jiaxun Yang,
	Yanteng Si, Yanteng Si

This is the Chinese version of index file

Signed-off-by: Yanteng Si <siyanteng@loongson.cn>
---
 .../translations/zh_CN/mips/index.rst         | 29 +++++++++++++++++++
 1 file changed, 29 insertions(+)
 create mode 100644 Documentation/translations/zh_CN/mips/index.rst

diff --git a/Documentation/translations/zh_CN/mips/index.rst b/Documentation/translations/zh_CN/mips/index.rst
new file mode 100644
index 000000000000..2c7b836a3da5
--- /dev/null
+++ b/Documentation/translations/zh_CN/mips/index.rst
@@ -0,0 +1,29 @@
+.. SPDX-License-Identifier: GPL-2.0
+
+.. include:: ../disclaimer-zh_CN.rst
+
+:Original: :ref:`Documentation/mips/index.rst <index>`
+:Translator: Yanteng Si <siyanteng@loongson.cn>
+
+.. _cn_index:
+
+
+===========================
+MIPS特性文档
+===========================
+
+.. toctree::
+   :maxdepth: 2
+   :numbered:
+
+   booting
+   ingenic-tcu
+
+   features
+
+.. only::  subproject and html
+
+   Indices
+   =======
+
+   * :ref:`genindex`
-- 
2.27.0


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

* [PATCH v2 2/2] docs/zh_CN: add Chinese booting file
  2021-01-07  2:23 [PATCH v2 1/2] docs/zh_CN: add Chinese index file Yanteng Si
@ 2021-01-07  2:23 ` Yanteng Si
  2021-01-07  3:24   ` Alex Shi
  2021-01-07  3:20 ` [PATCH v2 1/2] docs/zh_CN: add Chinese index file Alex Shi
  1 sibling, 1 reply; 5+ messages in thread
From: Yanteng Si @ 2021-01-07  2:23 UTC (permalink / raw)
  To: Harry Wei
  Cc: Alex Shi, Jonathan Corbet, linux-doc, Huacai Chen, Jiaxun Yang,
	Yanteng Si, Yanteng Si

This is the Chinese version of booting file

Signed-off-by: Yanteng Si <siyanteng@loongson.cn>
---
 .../translations/zh_CN/mips/booting.rst       | 31 +++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 Documentation/translations/zh_CN/mips/booting.rst

diff --git a/Documentation/translations/zh_CN/mips/booting.rst b/Documentation/translations/zh_CN/mips/booting.rst
new file mode 100644
index 000000000000..3099d0fff7a6
--- /dev/null
+++ b/Documentation/translations/zh_CN/mips/booting.rst
@@ -0,0 +1,31 @@
+.. SPDX-License-Identifier: GPL-2.0
+
+.. include:: ../disclaimer-zh_CN.rst
+
+:Original: :ref:`Documentation/mips/booting.rst <booting>`
+:Translator: Yanteng Si <siyanteng@loongson.cn>
+
+.. _cn_booting:
+
+BMIPS设备树引导
+------------------------
+
+  一些bootloaders只支持在内核镜像开始地址处的单一入口点。而其它
+  bootloaders将跳转到ELF的开始地址处。两种方案都支持的;因为
+  CONFIG_BOOT_RAW=y and CONFIG_NO_EXCEPT_FILL=y, 所以第一条指令
+  会立即跳转到kernel_entry()入口处执行。
+
+  与arch/arm情况(b)类似,dt感知的引导加载程序需要设置以下寄存器:
+
+         a0 : 0
+
+         a1 : 0xffffffff
+
+         a2 : RAM中指向设备树块的物理指针(在chapterII中定义)。
+              设备树可以位于前512MB物理地址空间(0x00000000 -
+              0x1fffffff)的任何位置,以64位边界对齐。
+
+  传统bootloaders不会使用这样的约定,并且它们不传入DT块。
+  在这种情况下,Linux将通过选中CONFIG_DT_*查找DTB。
+
+  以上约定只在32位系统中定义,因为目前没有任何64位的BMIPS实现。
-- 
2.27.0


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

* Re: [PATCH v2 1/2] docs/zh_CN: add Chinese index file
  2021-01-07  2:23 [PATCH v2 1/2] docs/zh_CN: add Chinese index file Yanteng Si
  2021-01-07  2:23 ` [PATCH v2 2/2] docs/zh_CN: add Chinese booting file Yanteng Si
@ 2021-01-07  3:20 ` Alex Shi
  1 sibling, 0 replies; 5+ messages in thread
From: Alex Shi @ 2021-01-07  3:20 UTC (permalink / raw)
  To: Yanteng Si, Harry Wei
  Cc: Jonathan Corbet, linux-doc, Huacai Chen, Jiaxun Yang, Yanteng Si

I didn't apply/build with the patch, with the contents,

Reviewed-by: Alex Shi <alex.shi@linux.alibaba.com>

在 2021/1/7 上午10:23, Yanteng Si 写道:
> This is the Chinese version of index file
> 
> Signed-off-by: Yanteng Si <siyanteng@loongson.cn>
> ---
>  .../translations/zh_CN/mips/index.rst         | 29 +++++++++++++++++++
>  1 file changed, 29 insertions(+)
>  create mode 100644 Documentation/translations/zh_CN/mips/index.rst
> 
> diff --git a/Documentation/translations/zh_CN/mips/index.rst b/Documentation/translations/zh_CN/mips/index.rst
> new file mode 100644
> index 000000000000..2c7b836a3da5
> --- /dev/null
> +++ b/Documentation/translations/zh_CN/mips/index.rst
> @@ -0,0 +1,29 @@
> +.. SPDX-License-Identifier: GPL-2.0
> +
> +.. include:: ../disclaimer-zh_CN.rst
> +
> +:Original: :ref:`Documentation/mips/index.rst <index>`
> +:Translator: Yanteng Si <siyanteng@loongson.cn>
> +
> +.. _cn_index:
> +
> +
> +===========================
> +MIPS特性文档
> +===========================
> +
> +.. toctree::
> +   :maxdepth: 2
> +   :numbered:
> +
> +   booting
> +   ingenic-tcu
> +
> +   features
> +
> +.. only::  subproject and html
> +
> +   Indices
> +   =======
> +
> +   * :ref:`genindex`
> 

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

* Re: [PATCH v2 2/2] docs/zh_CN: add Chinese booting file
  2021-01-07  2:23 ` [PATCH v2 2/2] docs/zh_CN: add Chinese booting file Yanteng Si
@ 2021-01-07  3:24   ` Alex Shi
  2021-01-07 12:22     ` teng sterling
  0 siblings, 1 reply; 5+ messages in thread
From: Alex Shi @ 2021-01-07  3:24 UTC (permalink / raw)
  To: Yanteng Si, Harry Wei
  Cc: Jonathan Corbet, linux-doc, Huacai Chen, Jiaxun Yang, Yanteng Si



在 2021/1/7 上午10:23, Yanteng Si 写道:
> This is the Chinese version of booting file


Uh, I guess more clear and detailed commit log and subject will help
user understand your changes.

like this:

subject: doc/zh_CN: add mips booting.rst translation

This patch translates Documentation/mips/booting.rst into Chinese.


> 
> Signed-off-by: Yanteng Si <siyanteng@loongson.cn>
> ---
>  .../translations/zh_CN/mips/booting.rst       | 31 +++++++++++++++++++
>  1 file changed, 31 insertions(+)
>  create mode 100644 Documentation/translations/zh_CN/mips/booting.rst
> 
> diff --git a/Documentation/translations/zh_CN/mips/booting.rst b/Documentation/translations/zh_CN/mips/booting.rst
> new file mode 100644
> index 000000000000..3099d0fff7a6
> --- /dev/null
> +++ b/Documentation/translations/zh_CN/mips/booting.rst
> @@ -0,0 +1,31 @@
> +.. SPDX-License-Identifier: GPL-2.0
> +
> +.. include:: ../disclaimer-zh_CN.rst
> +
> +:Original: :ref:`Documentation/mips/booting.rst <booting>`
> +:Translator: Yanteng Si <siyanteng@loongson.cn>
> +
> +.. _cn_booting:
> +
> +BMIPS设备树引导
> +------------------------
> +
> +  一些bootloaders只支持在内核镜像开始地址处的单一入口点。而其它
> +  bootloaders将跳转到ELF的开始地址处。两种方案都支持的;因为
> +  CONFIG_BOOT_RAW=y and CONFIG_NO_EXCEPT_FILL=y, 所以第一条指令
> +  会立即跳转到kernel_entry()入口处执行。
> +
> +  与arch/arm情况(b)类似,dt感知的引导加载程序需要设置以下寄存器:
> +
> +         a0 : 0
> +
> +         a1 : 0xffffffff
> +
> +         a2 : RAM中指向设备树块的物理指针(在chapterII中定义)。
> +              设备树可以位于前512MB物理地址空间(0x00000000 -
> +              0x1fffffff)的任何位置,以64位边界对齐。
> +
> +  传统bootloaders不会使用这样的约定,并且它们不传入DT块。
> +  在这种情况下,Linux将通过选中CONFIG_DT_*查找DTB。
> +
> +  以上约定只在32位系统中定义,因为目前没有任何64位的BMIPS实现。
> 

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

* Re: [PATCH v2 2/2] docs/zh_CN: add Chinese booting file
  2021-01-07  3:24   ` Alex Shi
@ 2021-01-07 12:22     ` teng sterling
  0 siblings, 0 replies; 5+ messages in thread
From: teng sterling @ 2021-01-07 12:22 UTC (permalink / raw)
  To: Alex Shi
  Cc: Yanteng Si, Harry Wei, Jonathan Corbet, linux-doc, Huacai Chen,
	Jiaxun Yang, Yanteng Si

Thank you very much, you will see it in the PATCH v3.

Thanks
Yanteng Si


Alex Shi <alex.shi@linux.alibaba.com> 于2021年1月7日周四 上午11:27写道:
>
>
>
> 在 2021/1/7 上午10:23, Yanteng Si 写道:
> > This is the Chinese version of booting file
>
>
> Uh, I guess more clear and detailed commit log and subject will help
> user understand your changes.
>
> like this:
>
> subject: doc/zh_CN: add mips booting.rst translation
>
> This patch translates Documentation/mips/booting.rst into Chinese.
>
>
> >
> > Signed-off-by: Yanteng Si <siyanteng@loongson.cn>
> > ---
> >  .../translations/zh_CN/mips/booting.rst       | 31 +++++++++++++++++++
> >  1 file changed, 31 insertions(+)
> >  create mode 100644 Documentation/translations/zh_CN/mips/booting.rst
> >
> > diff --git a/Documentation/translations/zh_CN/mips/booting.rst b/Documentation/translations/zh_CN/mips/booting.rst
> > new file mode 100644
> > index 000000000000..3099d0fff7a6
> > --- /dev/null
> > +++ b/Documentation/translations/zh_CN/mips/booting.rst
> > @@ -0,0 +1,31 @@
> > +.. SPDX-License-Identifier: GPL-2.0
> > +
> > +.. include:: ../disclaimer-zh_CN.rst
> > +
> > +:Original: :ref:`Documentation/mips/booting.rst <booting>`
> > +:Translator: Yanteng Si <siyanteng@loongson.cn>
> > +
> > +.. _cn_booting:
> > +
> > +BMIPS设备树引导
> > +------------------------
> > +
> > +  一些bootloaders只支持在内核镜像开始地址处的单一入口点。而其它
> > +  bootloaders将跳转到ELF的开始地址处。两种方案都支持的;因为
> > +  CONFIG_BOOT_RAW=y and CONFIG_NO_EXCEPT_FILL=y, 所以第一条指令
> > +  会立即跳转到kernel_entry()入口处执行。
> > +
> > +  与arch/arm情况(b)类似,dt感知的引导加载程序需要设置以下寄存器:
> > +
> > +         a0 : 0
> > +
> > +         a1 : 0xffffffff
> > +
> > +         a2 : RAM中指向设备树块的物理指针(在chapterII中定义)。
> > +              设备树可以位于前512MB物理地址空间(0x00000000 -
> > +              0x1fffffff)的任何位置,以64位边界对齐。
> > +
> > +  传统bootloaders不会使用这样的约定,并且它们不传入DT块。
> > +  在这种情况下,Linux将通过选中CONFIG_DT_*查找DTB。
> > +
> > +  以上约定只在32位系统中定义,因为目前没有任何64位的BMIPS实现。
> >

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

end of thread, other threads:[~2021-01-07 12:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-07  2:23 [PATCH v2 1/2] docs/zh_CN: add Chinese index file Yanteng Si
2021-01-07  2:23 ` [PATCH v2 2/2] docs/zh_CN: add Chinese booting file Yanteng Si
2021-01-07  3:24   ` Alex Shi
2021-01-07 12:22     ` teng sterling
2021-01-07  3:20 ` [PATCH v2 1/2] docs/zh_CN: add Chinese index file Alex Shi

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.