# Common makefile for GHDL synthesis # Specify: # # VHDL_SYN_FILES = VHDL files for synthesis, unordered # VERILOG_FILES = auxiliary verilog wrappers that might be needed # PLATFORM: 'ecp5' for now # TOPLEVEL: top level entity name # TOPLEVEL_PARAMETER: top level entity name parameters, when passed a generic # LPF: I/O constraints file PLATFORM ?= ecp5 ifneq ($(VERILOG_FILES),) MAYBE_READ_VERILOG = read_verilog $(VERILOG_FILES); endif %.json: $(VHDL_SYN_FILES) $(YOSYS) -m $(GHDLSYNTH) -p \ "ghdl $(GHDL_FLAGS) $(GHDL_GENERICS) $^ -e $(TOPLEVEL); \ $(MAYBE_READ_VERILOG) \ synth_$(PLATFORM) \ -top $(TOPLEVEL)$(TOPLEVEL_PARAMETER) -json $@" 2>&1 | tee $*-report.txt %.config: %.json $(NEXTPNR) --json $< --lpf $(LPF) \ --textcfg $@ $(NEXTPNR_FLAGS) --package $(PACKAGE) %.svf: %.config $(ECPPACK) --svf $*.svf $< $@ .PRECIOUS: %.json %.config a> : openwrt/upstream
upstream openwrtJames
aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-3.18/820-usb_add_usb_find_device_by_name.patch
blob: a2f526282bc2a32a13246d5ccc0a3746d8503a84 (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