PythonQ 248-8XX Especificaciones Pagina 68

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 210
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 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
Vista de pagina 67
1 2 ... 63 64 65 66 67 68 69 70 71 72 73 ... 209 210

Comentarios a estos manuales

Sin comentarios