aboutsummaryrefslogtreecommitdiffstats
path: root/b2qt-init-build-env
blob: c61e0c6443ecd86bce4ea8a9dfac15243257d6c8 (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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
#!/bin/sh
#############################################################################
##
## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
##
## This file is part of the Qt Enterprise Embedded Scripts of the Qt
## framework.
##
## $QT_BEGIN_LICENSE$
## Commercial License Usage Only
## Licensees holding valid commercial Qt license agreements with Digia
## with an appropriate addendum covering the Qt Enterprise Embedded Scripts,
## may use this file in accordance with the terms contained in said license
## agreement.
##
## For further information use the contact form at
## http://www.qt.io/contact-us.
##
##
## $QT_END_LICENSE$
##
#############################################################################

set -e

usage() {
   echo "Usage: $(basename $0) COMMAND [ARGS]"
   echo
   echo "Initialize build environment:"
   echo "  $(basename $0) init --device <name> [--reference <mirror path>]"
   echo "Initialize local mirror:"
   echo "  $(basename $0) mirror"
   echo "List available devices:"
   echo "  $(basename $0) list-devices"
}

while test -n "$1"; do
  case "$1" in
    "help" | "--help" | "-h")
      usage
      exit 0
      ;;
    "--reference" | "-r")
      shift
      REFERENCE=$1
      ;;
    "--device" | "-d")
      shift
      DEVICE=$1
      ;;
    *)
      if [ -n "$COMMAND" ]; then
        echo "Unknown argument: $1"
        usage
        exit 1
      fi
      COMMAND=$1
      ;;
  esac
  shift
done

if [ -z "${COMMAND}" ]; then
    usage
    exit 1
fi

DIR=$(readlink -f $(dirname $0))
if [ -n "${REFERENCE}" ]; then
    REFERENCE="--reference $(readlink -f ${REFERENCE})"
fi

get_repo() {
  REPO="./repo"
  if [ -n "$(command -v repo)" ]; then
    REPO="repo"
  elif [ ! -x "./repo" ]; then
    curl -s https://storage.googleapis.com/git-repo-downloads/repo > "./repo"
    chmod +x ./repo
  fi
}

get_groups() {
  case ${DEVICE} in
    all)
      PROJECT_GROUPS="all"
    ;;
    apalis-imx6|colibri-imx6|colibri-vf)
      PROJECT_GROUPS="toradex"
    ;;
    imx53qsb|imx6qsabresd|imx6dlsabresd|nitrogen6x)
      PROJECT_GROUPS="fsl"
    ;;
    tibidabo)
      PROJECT_GROUPS="architech"
    ;;
    beagleboard|am335x-evm)
      PROJECT_GROUPS="ti"
    ;;
    beaglebone)
      PROJECT_GROUPS="bbb"
    ;;
    raspberrypi|raspberrypi2)
      PROJECT_GROUPS="rpi"
    ;;
    emulator)
      PROJECT_GROUPS="emulator"
    ;;
    *)
      echo "Unknown device configuration, including all meta layers"
      PROJECT_GROUPS="all"
    ;;
  esac

  PROJECT_GROUPS="${PROJECT_GROUPS} default"
}

list_devices() {
  echo "Available device configurations:"
  for device in $(ls $DIR/conf/distro/include/*.conf); do
    echo "  $(basename ${device%%.conf})"
  done
}

mirror() {
  mkdir -p .repo/manifests
  cp ${DIR}/scripts/manifest.xml .repo/manifests/
  MANIFEST="manifest.xml"
  ${REPO} init -u ${PWD}/.repo/repo -b default -m ${MANIFEST} -g all --mirror
  ${REPO} sync
}

patch_poky() {
    cd sources/poky
    found=$(git rev-list --grep="bitbake: cooker: add support for using % as a wildcard in bbappend filename" HEAD)
    if [ -z "$found" ]; then
        git cherry-pick 381d5920188398bc53b2454843054c8690bca243 > /dev/null
    fi

    found=$(git rev-list --grep="bitbake: cooker: Fix support for wildcards in bbappend filenames" HEAD)
    if [ -z "$found" ]; then
        git cherry-pick f91a3f46a1ee586e330be0868e8fbc4d2e78d361 > /dev/null
    fi
    cd -
}

init() {
  if [ -z "${DEVICE}" ]; then
    echo "device not defined"
    usage
    exit 1
  fi

  get_groups
  mkdir -p .repo/manifests
  cp ${DIR}/scripts/manifest*.xml .repo/manifests
  if [ -f .repo/manifests/manifest_${DEVICE}.xml ]; then
    MANIFEST="manifest_${DEVICE}.xml"
  else
    MANIFEST="manifest.xml"
  fi
  ${REPO} init -u ${PWD}/.repo/repo -b default -m ${MANIFEST} -g "${PROJECT_GROUPS}" ${REFERENCE}
  ${REPO} sync

  patch_poky

  if [ ! -e "sources/meta-b2qt" ]; then
    ln -s ${DIR} sources/meta-b2qt
  fi

  cp ${DIR}/scripts/setup-environment.sh .

}

get_repo

case "$COMMAND" in
  "init")
    init
  ;;
  "mirror")
    mirror
  ;;
  "list-devices")
    list_devices
  ;;
  *)
    echo "Unknown command"
    usage
    exit 1
  ;;
esac