#!/bin/sh # # Copyright (C) 2011 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. # # Write image header followed by all specified files # The header is padded to 64k, format is: # CE magic word ("Combined Extended Image") (2 bytes) # file format version field (2 bytes) # short description of the target device (32 bytes) # number of files following the header (2 byte) # name of the first file (32 bytes) # length of the first file encoded as zero padded 8 digit hex (8 bytes) # md5 checksum of the first file (32 bytes) # name of the Nth file (32 bytes) # length of the Nth file encoded as zero padded 8 digit hex (8 bytes) # md5 checksum of the Nth file (32 bytes) ## version history # * version 1: initial file format with num files / name / length / md5 checksum ME="${0##*/}" usage() { echo "Usage: $ME [ ]" [ "$IMG_OUT" ] && rm -f "$IMG_OUT" exit 1 } [ "$#" -lt 4 ] && usage CE_VERSION=1 IMG_TYPE=$1; shift IMG_OUT=$1; shift FILE_NUM=$(($# / 2)) FILES="" printf "CE%02x%-32s%02x" $CE_VERSION "$IMG_TYPE" $FILE_NUM > $IMG_OUT while [ "$#" -gt 1 ] do file=$1 filename=$2 [ ! -f "$file" ] && echo "$ME: Not a valid file: $file" && usage FILES="$FILES $file" md5=$(cat "$file" | md5sum -) printf "%-32s%08x%32s" "$filename" $(stat -c "%s" "$file") "${md5%% *}" >> $IMG_OUT shift 2 done [ "$#" -eq 1 ] && echo "$ME: Filename not specified: $1" && usage mv $IMG_OUT $IMG_OUT.tmp dd if="$IMG_OUT.tmp" of="$IMG_OUT" bs=65536 conv=sync 2>/dev/null rm $IMG_OUT.tmp cat $FILES >> $IMG_OUT logtreecommitdiffstats
blob: db8eec56c5a169f7738459e68f5de12aaece546c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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
/dts-v1/;

#include "rt5350.dtsi"

#include <dt-bindings/input/input.h>

/ {
	compatible = "X8", "ralink,rt5350-soc";
	model = "Poray X8";

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

		power {
			label = "x8:green:power";
			gpios = <&gpio0 13 1>;
		};
	};

	gpio-keys-polled {
		compatible = "gpio-keys-polled";
		#address-cells = <1>;
		#size-cells = <0>;
		poll-interval = <20>;

		reset {
			label = "reset";
			gpios = <&gpio0 10 1>;
			linux,code = <KEY_RESTART>;
		};
	};
};

&spi0 {
	status = "okay";

	m25p80@0 {
		#address-cells = <1>;
		#size-cells = <1>;
		compatible = "jedec,spi-nor";
		reg = <0>;
		linux,modalias = "m25p80", "gd25q64";
		spi-max-frequency = <10000000>;

		partition@0 {
			label = "u-boot";
			reg = <0x0 0x30000>;
			read-only;
		};

		partition@30000 {
			label = "u-boot-env";
			reg = <0x30000 0x10000>;
			read-only;
		};

		factory: partition@40000 {
			label = "factory";
			reg = <0x40000 0x10000>;
			read-only;
		};

		partition@50000 {
			label = "firmware";
			reg = <0x50000 0x7b0000>;
		};
	};
};

&pinctrl {
	state_default: pinctrl0 {
		gpio {
			ralink,group = "i2c", "jtag", "uartf";
			ralink,function = "gpio";
		};
	};
};

&ethernet {
	mtd-mac-address = <&factory 0x4>;
};

&esw {
	mediatek,portmap = <0x2f>;
	mediatek,led_polarity = <1>;
};

&wmac {
	ralink,mtd-eeprom = <&factory 0>;
	ralink,led-polarity = <1>;
};

&ehci {
	status = "okay";
};

&ohci {
	status = "okay";
};