svn commit: r235779 - head/sys/boot/fdt/dts

Grzegorz Bernacki gber at FreeBSD.org
Tue May 22 09:27:58 UTC 2012


Author: gber
Date: Tue May 22 09:27:57 2012
New Revision: 235779
URL: http://svn.freebsd.org/changeset/base/235779

Log:
  Divide nand flash for DB6281 into two partitions. One for u-boot
  and second one for general use.
  
  Obtained from: Semihalf
  Supported by:  FreeBSD Foundation, Juniper Networks

Modified:
  head/sys/boot/fdt/dts/db88f6281.dts

Modified: head/sys/boot/fdt/dts/db88f6281.dts
==============================================================================
--- head/sys/boot/fdt/dts/db88f6281.dts	Tue May 22 08:33:14 2012	(r235778)
+++ head/sys/boot/fdt/dts/db88f6281.dts	Tue May 22 09:27:57 2012	(r235779)
@@ -89,7 +89,16 @@
 			bank-width = <2>;
 			device-width = <1>;
 
+			slice at 0 {
+				reg = <0x0 0x200000>;
+				label = "u-boot";
+				read-only;
+			};
 
+			slice at 200000 {
+				reg = <0x200000 0x7e00000>;
+				label = "root";
+			};
 		};
 	};
 


More information about the svn-src-head mailing list