• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Commit MetaInfo

Révision2180aec5b57f8555f45deb97ee22ea2064d88203 (tree)
l'heure2022-07-15 03:13:50
AuteurTom Rini <trini@kons...>
CommiterTom Rini

Message de Log

designprinciples.rst: Perform minor cleanups

- Remove some missed wiki markup, and escape a "\n" correctly.
- Use gender-neutral language to refer to the user, consistently.

Cc: Claudius Heine <ch@denx.de>
Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Tom Rini <trini@konsulko.com>

Change Summary

Modification

--- a/doc/develop/designprinciples.rst
+++ b/doc/develop/designprinciples.rst
@@ -28,15 +28,15 @@ millions...
2828
2929 A usable and useful configuration of U-Boot, including a basic
3030 interactive command interpreter, support for download over Ethernet
31-and the capability to program the flash shall fit in no more than 128 !KiB.
31+and the capability to program the flash shall fit in no more than 128 KiB.
3232
3333 Keep it Fast
3434 ^^^^^^^^^^^^
3535
3636 The end user is not interested in running U-Boot. In most embedded
37-systems he is not even aware that U-Boot exists. The user wants to
37+systems they are not even aware that U-Boot exists. The user wants to
3838 run some application code, and that as soon as possible after switching
39-on his device.
39+on their device.
4040
4141 It is therefore essential that U-Boot is as fast as possible,
4242 especially that it loads and boots the operating system as fast as possible.
@@ -63,7 +63,7 @@ Keep it Simple
6363 ^^^^^^^^^^^^^^
6464
6565 U-Boot is a boot loader, but it is also a tool used for board
66-bring-up, for production testing, and for other activities
66+bring-up, for production testing, and for other activities.
6767
6868 Keep it Portable
6969 ^^^^^^^^^^^^^^^^
@@ -96,13 +96,13 @@ Keep it Configurable
9696 Section "Keep it Small" already explains about the size restrictions
9797 for U-Boot on one side. On the other side, U-Boot is a powerful tool
9898 with many, many extremely useful features. The maintainer or user of
99-each board will have to decide which features are important to him and
100-what shall be included with his specific board configuration to meet
101-his current requirements and restrictions.
99+each board will have to decide which features are important to them and
100+what shall be included with their specific board configuration to meet
101+their current requirements and restrictions.
102102
103103 Please make sure that it is easy to add or remove features from a
104104 board configuration, so everybody can make the best use of U-Boot on
105-his system.
105+their system.
106106
107107 If a feature is not included, it should not have any residual code
108108 bloating the build.
@@ -126,7 +126,7 @@ debug is all the more important to many of us.
126126 * All initialization steps shall print some "begin doing this" message before
127127 they actually start, and some "done" message when they complete. For example,
128128 RAM initialization and size detection may print a "RAM: " before they start,
129- and "256 MB\n" when done. The purpose of this is that you can always see
129+ and "256 MB\\n" when done. The purpose of this is that you can always see
130130 which initialization step was running if there should be any problem. This
131131 is important not only during software development, but also for the service
132132 people dealing with broken hardware in the field.
@@ -143,8 +143,8 @@ Please always keep in mind that there are at least three different
143143 groups of users for U-Boot, with completely different expectations
144144 and requirements:
145145
146-* The end user of an embedded device just wants to run some application; he
147- does not even want to know that U-Boot exists and only rarely interacts with
146+* The end user of an embedded device just wants to run some application; they
147+ do not even want to know that U-Boot exists and only rarely interacts with
148148 it (for example to perform a reset to factory default settings etc.)
149149
150150 * System designers and engineers working on the development of the application