aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/abs2rel.pl
Commit message (Expand)AuthorAgeFilesLines
* get rid of $Id$ - it has never helped us and it has broken too many patches ;)Felix Fietkau2009-04-171-1/+0
* use #!/usr/bin/env perl instead of #!/usr/bin/perl in openwrt scripts (fixes ...Felix Fietkau2008-09-231-1/+1
* add an abs2rel.pl helper script (returns a path relative to another)Nicolas Thill2007-09-011-0/+17
n36'>36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
/dts-v1/;

/include/ "P2812HNUFX.dtsi"

/ {
	model = "P2812HNUF3 - ZyXEL P-2812HNU-F3";

	fpi@10000000 {
		localbus@0 {
			nor-boot@0 {
				compatible = "lantiq,nor";
				bank-width = <2>;
				reg = <0 0x0 0x800000>;
				#address-cells = <1>;
				#size-cells = <1>;

				partition@0 {
					label = "uboot";
					reg = <0x0 0x50000>;
					read-only;
				};
				partition@50000 {
					label = "uboot-env";
					reg = <0x50000 0x10000>;
				};
				partition@60000 {
					label = "unused";
					reg = <0x60000 0x7a0000>;
				};
			};

			nand-parts@0 {
				compatible = "gen_nand", "lantiq,nand-xway";
				lantiq,cs = <1>;
				bank-width = <2>;
				reg = <1 0x0 0x2000000>;
				#address-cells = <1>;
				#size-cells = <1>;

				partition@0 {
					label = "kernel";
					reg = <0x0 0x200000>;
				};
				partition@200000 {
					label = "ubi";
					reg = <0x200000 0x7e00000>;
				};
			};
		};
	};

	ralink_eep {
		compatible = "ralink,eeprom";
		ralink,eeprom = "RT3092.eeprom";
	};

	gpio-leds {
		compatible = "gpio-leds";

		internet2 {
			label = "internet2";
			gpios = <&stp 16 1>;
		};
		internet {
			label = "internet";
			gpios = <&stp 17 1>;
		};
		dsl {
			label = "dsl";
			gpios = <&stp 18 1>;
		};
		dsl2 {
			label = "dsl2";
			gpios = <&stp 19 1>;
		};
		wireless_red {
			label = "wireless_red";
			gpios = <&stp 20 1>;
		};
		wireless_green {
			label = "wireless_green";
			gpios = <&stp 21 1>;
		};
		power2 {
			label = "power2";
			gpios = <&stp 22 1>;
		};
		power {
			label = "power";
			gpios = <&stp 23 1>;
		};
		phone1 {
			label = "phone1";
			gpios = <&gpio 11 1>;
		};
		phone1warn {
			label = "phone1warn";
			gpios = <&gpio 12 1>;
		};
		phone2 {
			label = "phone2";
			gpios = <&gpio 28 1>;
		};
		phone2warn {
			label = "phone2warn";
			gpios = <&gpio 26 1>;
		};
	};
};