Commit 2c051651734cfc1e97da0f81d05c45f4f8dbca6a

Authored by Detlev Zundel
1 parent ec0f7277cb

Added changelog entry for previous small commits and extended README on

coding style.

Showing 2 changed files with 23 additions and 6 deletions Side-by-side Diff

... ... @@ -2,6 +2,16 @@
2 2 Changes since U-Boot 1.1.4:
3 3 ======================================================================
4 4  
  5 +* Extended README entry on coding style
  6 +
  7 +* Added another example showing simple interrupt interception.
  8 +
  9 +* Added simple_strtoul(), getenv() and setenv() to the exported functions.
  10 + Also bumped up ABI version to reflect this change.
  11 +
  12 +* Added interrupt handling capabilities for mpc5xxx processors.
  13 + Also added Linux like BUG() macros.
  14 +
5 15 * Add splashscreen support for MCC200 board.
6 16  
7 17 * Make the serial driver framework work with CONFIG_SERIAL_MULTI
... ... @@ -3469,12 +3469,19 @@
3469 3469 -----------------
3470 3470  
3471 3471 All contributions to U-Boot should conform to the Linux kernel
3472   -coding style; see the file "Documentation/CodingStyle" in your Linux
3473   -kernel source directory.
  3472 +coding style; see the file "Documentation/CodingStyle" and the script
  3473 +"scripts/Lindent" in your Linux kernel source directory. In sources
  3474 +originating from U-Boot a style corresponding to "Lindent -pcs" (adding
  3475 +spaces before parameters to function calls) is actually used.
3474 3476  
3475   -Please note that U-Boot is implemented in C (and to some small parts
3476   -in Assembler); no C++ is used, so please do not use C++ style
3477   -comments (//) in your code.
  3477 +Source files originating from a different project (for example the
  3478 +MTD subsystem) are generally exempt from these guidelines and are not
  3479 +reformated to ease subsequent migration to newer versions of those
  3480 +sources.
  3481 +
  3482 +Please note that U-Boot is implemented in C (and to some small parts in
  3483 +Assembler); no C++ is used, so please do not use C++ style comments (//)
  3484 +in your code.
3478 3485  
3479 3486 Please also stick to the following formatting rules:
3480 3487 - remove any trailing white space