summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDetlev Zundel <dzu@pollux.denx.de>2006-09-01 15:39:02 +0200
committerDetlev Zundel <dzu@pollux.denx.de>2006-09-01 15:39:02 +0200
commit2c051651734cfc1e97da0f81d05c45f4f8dbca6a (patch)
tree2d2c632ef4d46d142f2cf621727e3bfc4da5146d
parentec0f7277cbb76565a203b5909acb2a6b93ba35fa (diff)
downloadblackbird-obmc-uboot-2c051651734cfc1e97da0f81d05c45f4f8dbca6a.tar.gz
blackbird-obmc-uboot-2c051651734cfc1e97da0f81d05c45f4f8dbca6a.zip
Added changelog entry for previous small commits and extended README on
coding style.
-rw-r--r--CHANGELOG10
-rw-r--r--README19
2 files changed, 23 insertions, 6 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 7df923c047..197af8d502 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,16 @@
Changes since U-Boot 1.1.4:
======================================================================
+* Extended README entry on coding style
+
+* Added another example showing simple interrupt interception.
+
+* Added simple_strtoul(), getenv() and setenv() to the exported functions.
+ Also bumped up ABI version to reflect this change.
+
+* Added interrupt handling capabilities for mpc5xxx processors.
+ Also added Linux like BUG() macros.
+
* Add splashscreen support for MCC200 board.
* Make the serial driver framework work with CONFIG_SERIAL_MULTI
diff --git a/README b/README
index e772c1af00..e0240238b8 100644
--- a/README
+++ b/README
@@ -3469,12 +3469,19 @@ Coding Standards:
-----------------
All contributions to U-Boot should conform to the Linux kernel
-coding style; see the file "Documentation/CodingStyle" in your Linux
-kernel source directory.
-
-Please note that U-Boot is implemented in C (and to some small parts
-in Assembler); no C++ is used, so please do not use C++ style
-comments (//) in your code.
+coding style; see the file "Documentation/CodingStyle" and the script
+"scripts/Lindent" in your Linux kernel source directory. In sources
+originating from U-Boot a style corresponding to "Lindent -pcs" (adding
+spaces before parameters to function calls) is actually used.
+
+Source files originating from a different project (for example the
+MTD subsystem) are generally exempt from these guidelines and are not
+reformated to ease subsequent migration to newer versions of those
+sources.
+
+Please note that U-Boot is implemented in C (and to some small parts in
+Assembler); no C++ is used, so please do not use C++ style comments (//)
+in your code.
Please also stick to the following formatting rules:
- remove any trailing white space
OpenPOWER on IntegriCloud