# This is a shell function to be sourced into your shell or placed in your .profile, # which makes setting things up for BitBake a bit easier. # # The author disclaims copyright to the contents of this file and places it in the # public domain. bbdev () { local BBDIR PKGDIR BUILDDIR if test x"$1" = "x--help"; then echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]"; return 1; fi if test x"$1" = x; then BBDIR=`pwd`; else BBDIR=$1; fi if test x"$2" = x; then PKGDIR=`pwd`; else PKGDIR=$2; fi if test x"$3" = x; then BUILDDIR=`pwd`; else BUILDDIR=$3; fi BBDIR=`readlink -f $BBDIR` PKGDIR=`readlink -f $PKGDIR` BUILDDIR=`readlink -f $BUILDDIR` if ! (test -d $BBDIR && test -d $PKGDIR && test -d $BUILDDIR); then echo >&2 "syntax: bbdev [bbdir [pkgdir [builddir]]]" return 1 fi PATH=$BBDIR/bin:$PATH BBPATH=$BBDIR if test x"$BBDIR" != x"$PKGDIR"; then BBPATH=$PKGDIR:$BBPATH fi if test x"$PKGDIR" != x"$BUILDDIR"; then BBPATH=$BUILDDIR:$BBPATH fi export BBPATH } /cgit.png' alt='cgit logo'/> index : openembedded-core.git
Trygve Laugstøl
summaryrefslogtreecommitdiff
path: root/meta/files/common-licenses/BitstreamVera
blob: e6f03aa57af37932b4ab27f62f6c7d029bd6f8bd (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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160