#!/bin/sh src='./install' if [ -d ./dist ]; then src='./dist/install' fi if ! [ -d $src ]; then echo "ERROR: Could not find a valid distribution directory." echo " If this is a source-only release, try 'make dist'." exit 1 fi dst='/' if [ $# -ne 0 ]; then dst=$1 fi if ! [ -d $dst ]; then echo "ERROR: You must specify a valid install directory." echo " The specified directory '$dst' is not valid." exit 1 fi echo "Installing Xen from '$src' to '$dst'..." cd $src/boot (echo '2.6.*' -2.6; echo '2.4.*' -2.4; echo '2.*.*' '') | while read m v do l=$(eval ls -t vmlinuz-$m-xen0 2>/dev/null | head -n 1) [ -e "$l" ] && ln -fs "$l" vmlinuz${v}-xen0 l=$(eval ls -t vmlinuz-$m-xenU 2>/dev/null | head -n 1) [ -e "$l" ] && ln -fs "$l" vmlinuz${v}-xenU done cd - cp -fdRL $src/* $dst echo "All done." echo "Checking to see whether prerequisite tools are installed..." cd $src/../check ./chk install echo "All done." exit 0 form'>
clone of git://git.panaceas.org/iCE40/nextpnr
aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/googletest/googlemock/scripts/generator/README.cppclean
blob: 65431b61759319cd35d80bfd0aa78441c0963e7b (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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115