1/ {
2	flash: flash@f8000000 {
3		#address-cells = <1>;
4		#size-cells = <1>;
5		compatible = "cfi-flash";
6		reg = <0xf8000000 0x01000000>;
7		bank-width = <2>;
8		device-width = <2>;
9		partition@0x0 {
10			label = "boot loader area";
11			reg = <0x00000000 0x00400000>;
12		};
13		partition@0x400000 {
14			label = "kernel image";
15			reg = <0x00400000 0x00600000>;
16		};
17		partition@0xa00000 {
18			label = "data";
19			reg = <0x00a00000 0x005e0000>;
20		};
21		partition@0xfe0000 {
22			label = "boot environment";
23			reg = <0x00fe0000 0x00020000>;
24		};
25        };
26};
27