aboutsummaryrefslogtreecommitdiff
path: root/rpb-debian-iot.yaml
blob: 4888e1248b2be7a51a14d2c0d6a8139843386357 (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
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
- job:
    name: rpb-debian-iot
    project-type: matrix
    defaults: global
    logrotate:
        daysToKeep: 30
        numToKeep: 30
    properties:
        - authorization:
            anonymous:
                - job-read
                - job-extended-read
                - job-workspace
            linaro:
                - job-read
                - job-extended-read
                - job-build
                - job-configure
                - job-cancel
    disabled: false
    node: build
    child-workspace: .
    display-name: 'Reference Platform - Debian - IoT'
    axes:
        - axis:
            type: user-defined
            name: BOARD
            values:
                - hikey
        - axis:
            type: slave
            name: label
            values:
                - docker-jessie-rp
    execution-strategy:
        sequential: true
        touchstone:
            expr: 'BOARD=="hikey"'
    wrappers:
        - timestamps
        - build-name:
            name: '#${BUILD_NUMBER}'
        - matrix-tie-parent:
            node: build
    builders:
        - linaro-publish-token
        - shell: |
            #!/bin/bash

            set -ex

            trap cleanup_exit INT TERM EXIT

            cleanup_exit()
            {
              cd ${WORKSPACE}
              sudo kpartx -dv ${BOARD}-debian-*.img || true
              rm -rf configs iot-gateway-files out
            }

            # Builder setup
            sudo apt-get update
            sudo apt-get install -y android-tools-fsutils grub-common kpartx libfdt-dev mtools python-requests dosfstools cpio
            wget -q \
              http://repo.linaro.org/ubuntu/linaro-tools/pool/main/l/linaro-image-tools/linaro-image-tools_2016.05-1linarojessie1_amd64.deb \
              http://repo.linaro.org/ubuntu/linaro-tools/pool/main/l/linaro-image-tools/python-linaro-image-tools_2016.05-1linarojessie1_all.deb
            sudo dpkg -i --force-all *.deb
            rm -f *.deb

            git clone --depth 1 http://git.linaro.org/ci/job/configs.git

            # Create the hardware pack
            cp -a configs/rpb-debian-iot/hwpacks/linaro-${BOARD} .
            VERSION=`date +%Y%m%d`-${BUILD_NUMBER}
            linaro-hwpack-create --debug linaro-${BOARD} ${VERSION}

            # Get rootfs
            export ROOTFS_BUILD_NUMBER=`wget -q --no-check-certificate -O - https://ci.linaro.org/job/stretch-arm64-rootfs/label=docker-jessie-arm64,rootfs=developer/lastSuccessfulBuild/buildNumber`
            export ROOTFS_BUILD_TIMESTAMP=`wget -q --no-check-certificate -O - https://ci.linaro.org/job/stretch-arm64-rootfs/label=docker-jessie-arm64,rootfs=developer/lastSuccessfulBuild/buildTimestamp?format=yyyyMMdd`
            export ROOTFS_BUILD_URL="http://snapshots.linaro.org/debian/images/stretch/developer-arm64/${ROOTFS_BUILD_NUMBER}/linaro-stretch-developer-${ROOTFS_BUILD_TIMESTAMP}-${ROOTFS_BUILD_NUMBER}.tar.gz"
            wget --progress=dot -e dotbytes=2M ${ROOTFS_BUILD_URL}
            ROOTFS_BUILD_TAR=linaro-stretch-developer-${ROOTFS_BUILD_TIMESTAMP}-${ROOTFS_BUILD_NUMBER}.tar.gz

            # Create pre-built image(s)
            linaro-media-create --dev fastmodel --output-directory ${WORKSPACE} \
              --image-file ${BOARD}-debian-stretch-iot-sdcard-${VERSION}.img --image-size 2500M \
              --binary ${ROOTFS_BUILD_TAR} --hwpack hwpack_linaro-${BOARD}_*.tar.gz --hwpack-force-yes --bootloader uefi

            # Create eMMC rootfs image(s)
            mkdir boot rootfs
            for device in $(sudo kpartx -avs ${BOARD}-debian-stretch-iot-sdcard-${VERSION}.img | cut -d' ' -f3); do
              partition=$(echo ${device} | cut -d'p' -f3)
              [ "${partition}" = "1" ] && sudo mount -o loop /dev/mapper/${device} boot
              [ "${partition}" = "2" ] && sudo mount -o loop /dev/mapper/${device} rootfs
            done

            # Add default config file templates
            git clone --depth 1 https://github.com/linaro-technologies/iot-gateway-files.git
            cd iot-gateway-files; IOT_GATEWAY_FILES_GIT_VERSION=`git log --format="%H" -1`; cd ..
            sudo cp -av iot-gateway-files/etc-sysctrl.d-gateway.conf rootfs/etc/sysctl.d/gateway.conf
            sudo cp -av iot-gateway-files/etc-network-interface.d-bt0 rootfs/etc/network/interfaces.d/bt0
            sudo cp -av iot-gateway-files/etc-NetworkManager-conf.d-nm-bt0.conf rootfs/etc/NetworkManager/conf.d/nm-bt0.conf
            sudo cp -av iot-gateway-files/etc-udev-rules.d-99-bluetooth-6lowpan.rules rootfs/etc/udev/rules.d/99-bluetooth-6lowpan.rules
            sudo cp -av iot-gateway-files/etc-tinyproxy.conf rootfs/etc/tinyproxy/tinyproxy.conf
            sudo cp -av iot-gateway-files/bluetooth_6lowpand.conf rootfs/etc/bluetooth/bluetooth_6lowpand.conf
            ## Custom init scripts
            sudo cp -av iot-gateway-files/bluetooth_6lowpand.sh rootfs/usr/bin/bluetooth_6lowpand
            sudo cp -av iot-gateway-files/etc-systemd-system-bluetooth_6lowpand.service rootfs/etc/systemd/system/bluetooth_6lowpand.service
            ## Mosquitto
            sudo cp -av iot-gateway-files/etc-mosquitto-template.conf rootfs/etc/mosquitto/template.conf
            sudo cp -av iot-gateway-files/mosquitto-conf.sh rootfs/usr/bin/mosquitto-conf

            ## Disable interfaces during boot so it can ignore bt0
            sudo sed -i 's/#CONFIGURE_INTERFACES=yes/CONFIGURE_INTERFACES=no/g' rootfs/etc/default/networking

            KERNEL_VERSION=`basename rootfs/boot/vmlinuz-* | sed -e "s,^[^0-9]*-,,g"`

            # Make sure fsck.ext4 is available as part of the initrd
            ## update-initrd fsck script only adds fsck.ext4 if the interface is available during runtime
            mkdir -p initrd; cd initrd;
            sudo sh -c 'cat ../rootfs/boot/initrd.img | gunzip | cpio -i'
            sudo cp ../rootfs/sbin/fsck.ext4 ../rootfs/sbin/e2fsck sbin/
            sudo cp ../rootfs/lib/aarch64-linux-gnu/libext2fs.so.2 lib/aarch64-linux-gnu/
            sudo cp ../rootfs/lib/aarch64-linux-gnu/libcom_err.so.2 lib/aarch64-linux-gnu/
            sudo cp ../rootfs/lib/aarch64-linux-gnu/libe2p.so.2 lib/aarch64-linux-gnu/
            sudo sh -c 'find . | cpio -o -H newc | gzip > ../rootfs/boot/initrd.img'
            cd ..; sudo rm -rf initrd
            sha1sum rootfs/boot/initrd.img | sudo tee rootfs/var/lib/initramfs-tools/${KERNEL_VERSION}

            mkdir -p out/${BOARD}

            # Build information
            cat > out/${BOARD}/HEADER.textile << EOF

            h4. Reference Platform Build - Debian - IoT

            Build description:
            * Build URL: "$BUILD_URL":$BUILD_URL
            * Developer Rootfs: "http://snapshots.linaro.org/debian/images/stretch/developer-arm64/$ROOTFS_BUILD_NUMBER":http://snapshots.linaro.org/debian/images/stretch/developer-arm64/$ROOTFS_BUILD_NUMBER
            * Kernel: "linux-image-$KERNEL_VERSION":http://repo.linaro.org/ubuntu/linaro-overlay/pool/main/l/linux/
            * IoT Gateway Files: "$IOT_GATEWAY_FILES_GIT_VERSION":https://github.com/linaro-technologies/iot-gateway-files/tree/$IOT_GATEWAY_FILES_GIT_VERSION
            EOF

            # Create boot image
            if [ "${BOARD}" == "hikey" ]; then
                FASTBOOT_EFI_BUILD_NUMBER=`wget -q --no-check-certificate -O - https://ci.linaro.org/job/96boards-reference-uefi/MX_PLATFORM=hikey,MX_TYPE=RELEASE,label=docker-jessie-rp/lastStableBuild/buildNumber`
                FASTBOOT_EFI_URL="http://snapshots.linaro.org/96boards/reference-platform/components/uefi/${FASTBOOT_EFI_BUILD_NUMBER}/release/hikey/AndroidFastbootApp.efi"
                wget --progress=dot ${FASTBOOT_EFI_URL} -O fastboot.efi
                GRUB_EFI_BUILD_NUMBER=`wget -q --no-check-certificate -O - https://ci.linaro.org/job/96boards-reference-grub-efi-arm64/lastStableBuild/buildNumber`
                GRUB_EFI_URL="https://snapshots.linaro.org/96boards/reference-platform/components/grub/${GRUB_EFI_BUILD_NUMBER}/grubaa64.efi"
                GRUB_SD_EFI_URL="https://snapshots.linaro.org/96boards/reference-platform/components/grub/${GRUB_EFI_BUILD_NUMBER}/grubaa64-sd.efi"
                wget --progress=dot ${GRUB_EFI_URL} -O grubaa64.efi
                wget --progress=dot ${GRUB_SD_EFI_URL} -O grubaa64-sd.efi

                /sbin/mkfs.fat -F32 -n "boot" -C out/${BOARD}/${BOARD}-boot-linux-${VERSION}.uefi.img 65536
                mmd -i out/${BOARD}/${BOARD}-boot-linux-${VERSION}.uefi.img EFI
                mmd -i out/${BOARD}/${BOARD}-boot-linux-${VERSION}.uefi.img EFI/BOOT
                mcopy -i out/${BOARD}/${BOARD}-boot-linux-${VERSION}.uefi.img fastboot.efi ::EFI/BOOT/fastboot.efi
                mcopy -i out/${BOARD}/${BOARD}-boot-linux-${VERSION}.uefi.img grubaa64.efi ::EFI/BOOT/grubaa64.efi
                chmod 644 out/${BOARD}/${BOARD}-boot-linux-${VERSION}.uefi.img

                # Replicate boot image into the original img file
                sudo rm -rf boot/*
                sudo mkdir -p boot/EFI/BOOT
                sudo cp fastboot.efi boot/EFI/BOOT/
                # Boot partition for SD needs a different grub (default root search)
                sudo cp grubaa64-sd.efi boot/EFI/BOOT/grubaa64.efi
                sudo cp grubaa64-sd.efi boot/EFI/BOOT/BOOTAA64.EFI

                # Compress boot partition image
                gzip -9 out/${BOARD}/${BOARD}-boot-linux-${VERSION}.uefi.img

                cat >> out/${BOARD}/HEADER.textile << EOF
            * Grub UEFI: "http://snapshots.linaro.org/96boards/reference-platform/components/grub/$GRUB_EFI_BUILD_NUMBER":http://snapshots.linaro.org/96boards/reference-platform/components/grub/$GRUB_EFI_BUILD_NUMBER
            * ARM TF / EDK2 UEFI: "http://snapshots.linaro.org/96boards/reference-platform/components/uefi/$FASTBOOT_EFI_BUILD_NUMBER/release/hikey":http://snapshots.linaro.org/96boards/reference-platform/components/uefi/$FASTBOOT_EFI_BUILD_NUMBER/release/hikey
            EOF
                # Grub config to be set as part of the rootfs
                ## FIXME: Make this generic
                sudo mkdir rootfs/boot/grub/fonts
                sudo cp rootfs/usr/share/grub/unicode.pf2 rootfs/boot/grub/fonts
                sudo grub-editenv rootfs/boot/grubenv create
                sed -e "s/KERNEL_VERSION/$KERNEL_VERSION/" configs/96boards-reference-platform-debian/grub/grub-hikey.cfg.in > grub.cfg
                sed -e "s/root=(hd0,gpt9)/root=(hd1,msdos2)/g" -e "s/mmcblk0p9/mmcblk1p2/g" grub.cfg > grub-sd.cfg
                sudo cp configs/96boards-reference-platform-debian/grub/grub-fastboot.cfg rootfs/boot/grub/custom.cfg
                sudo cp -a rootfs/usr/lib/grub/arm64-efi rootfs/boot/grub
                sudo cp hi6220-hikey.dtb rootfs/boot/hi6220-hikey.dtb-${KERNEL_VERSION}
                sudo ln -s hi6220-hikey.dtb-${KERNEL_VERSION} rootfs/boot/hi6220-hikey.dtb
                echo "KERNEL_DEVICETREE=hi6220-hikey" | sudo tee rootfs/etc/default/kernel
                sudo sed -i 's/^GRUB_CMDLINE_LINUX_DEFAULT.*/GRUB_CMDLINE_LINUX_DEFAULT="efi=noruntime rw quiet"/g' rootfs/etc/default/grub

                # Since it uses uefi, create the boot efi fstab entry
                sudo mkdir rootfs/boot/efi
                cat << EOF | sudo tee rootfs/etc/fstab
            /dev/disk/by-partlabel/boot   /boot/efi vfat defaults          0 0
            EOF

                # Bluetooth init script
                sudo cp -av iot-gateway-files/usr-bin-btsetup-hikey.sh rootfs/usr/bin/btsetup-hikey.sh
                sudo cp -av iot-gateway-files/etc-systemd-system-btsetup-hikey.service rootfs/etc/systemd/system/btsetup-hikey.service
            fi

            # Create the ext4fs (fastboot compatible)
            sudo mkfs.ext4 -L rootfs ${BOARD}-rootfs-debian-stretch-iot-${VERSION}.emmc.img.raw 2500M
            mkdir rootfs_ext4
            sudo mount -o loop ${BOARD}-rootfs-debian-stretch-iot-${VERSION}.emmc.img.raw rootfs_ext4
            sudo cp -a rootfs/* rootfs_ext4
            ## Make grub specific to the image type (e.g. emmc, sd)
            if [ -f grub.cfg ]; then
                sudo cp grub.cfg rootfs_ext4/boot/grub
                sudo cp grub-sd.cfg rootfs/boot/grub/grub.cfg
            fi
            sudo umount boot rootfs_ext4 rootfs
            sudo ext2simg -v ${BOARD}-rootfs-debian-stretch-iot-${VERSION}.emmc.img.raw out/${BOARD}/${BOARD}-rootfs-debian-stretch-iot-${VERSION}.emmc.img

            sudo kpartx -dv ${BOARD}-debian-stretch-iot-sdcard-${VERSION}.img
            sudo rm -rf boot rootfs rootfs_ext4 ${BOARD}-rootfs-debian-stretch-iot-${VERSION}.emmc.img.raw

            # Compress image
            gzip -9 out/${BOARD}/${BOARD}-rootfs-debian-stretch-iot-${VERSION}.emmc.img
            ## For SD Card or other boot medias
            cp ${BOARD}-debian-stretch-iot-sdcard-${VERSION}.img out/${BOARD}/
            gzip -9 out/${BOARD}/${BOARD}-debian-stretch-iot-sdcard-${VERSION}.img

            # Create MD5SUMS files
            (cd out/${BOARD} && md5sum *.gz > MD5SUMS.txt)

            # Publish
            test -d ${HOME}/bin || mkdir ${HOME}/bin
            wget https://git.linaro.org/ci/publishing-api.git/blob_plain/HEAD:/linaro-cp.py -O ${HOME}/bin/linaro-cp.py
            time python ${HOME}/bin/linaro-cp.py \
              --server ${PUBLISH_SERVER} \
              out/${BOARD} 96boards/reference-platform/debian-iot/${BUILD_NUMBER}/${BOARD}
            python ${HOME}/bin/linaro-cp.py \
              --server ${PUBLISH_SERVER} \
              --make-link 96boards/reference-platform/debian-iot/${BUILD_NUMBER}
    publishers:
        - email:
            recipients: 'ricardo.salveti@linaro.org'
        - email-ext:
            recipients: 'ricardo.salveti@linaro.org, michael.scott@linaro.org'
            always: true