PythonQ 248-8XX Spezifikationen Seite 68

  • Herunterladen
  • Zu meinen Handbüchern hinzufügen
  • Drucken
  • Seite
    / 210
  • Inhaltsverzeichnis
  • LESEZEICHEN
  • Bewertet. / 5. Basierend auf Kundenbewertungen
Seitenansicht 67
=> fdt print /cpus
cpus {
cpu@0 {
compatible = "arm,arm926ejs";
};
};
=>
5.9.7.4. fdt mknode - create new nodes
fdt mknode can be used to attach a new node to the tree. We will use the fdt list command to verify
that the new node has been created and that it is empty:
=> fdt list /
/ {
#address-cells = <0x1>;
#size-cells = <0x1>;
interrupt-parent = <0x1>;
model = "DENX M28EVK";
compatible = "denx,m28evk", "fsl,imx28";
chosen {
};
aliases {
};
memory {
};
cpus {
};
apb@80000000 {
};
ahb@80080000 {
};
regulators {
};
sound {
};
};
=> fdt mknode / testnode
=> fdt list /
/ {
#address-cells = <0x1>;
#size-cells = <0x1>;
interrupt-parent = <0x1>;
model = "DENX M28EVK";
compatible = "denx,m28evk", "fsl,imx28";
testnode {
};
chosen {
};
aliases {
};
memory {
};
cpus {
};
apb@80000000 {
};
ahb@80080000 {
};
regulators {
};
sound {
};
};
=> fdt list /testnode
5.9.7.3. fdt print - recursive print 68
Seitenansicht 67
1 2 ... 63 64 65 66 67 68 69 70 71 72 73 ... 209 210

Kommentare zu diesen Handbüchern

Keine Kommentare