Hello Steven,
Le 12/07/12 06:14, Steven J. Hill a écrit :
[snip]
+/ {
+ #address-cells = <1>;
+ #size-cells = <1>;
+ compatible = "mips,sead-3";
+
+ cpus {
+ cpu@0 {
+ compatible = "mips,mips14Kc,mips14KEc";
+ };
You probably want this the other way around:
mips14KEc,mips14Kc,mips
you should always have the left-most string being the most descriptive
about the hardware and the last one being the less descriptive and thus
less "specializing" in order to be backward compatible.
+ };
+
+ chosen {
+ bootargs = "console=ttyS1,38400 rootdelay=10 root=/dev/sda3";
+ };
+
+ memory {
+ device_type = "memory";
+ reg = <0x0 0x08000000>;
+ };
+};