summaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@digia.com>2014-03-25 13:41:19 +0200
committerSamuli Piippo <samuli.piippo@digia.com>2014-03-26 12:42:51 +0200
commit13c0a0c319524012c2b6cc7aa92d6b5f487d4d58 (patch)
tree67a4277cb54768ea1bf4ec71d7369d3d15bf75c3 /classes
parentac491beed785edeea0e8ae3d883864ab521da6b0 (diff)
downloadmeta-boot2qt-13c0a0c319524012c2b6cc7aa92d6b5f487d4d58.tar.gz
Create boot.tar.gz as part of the image build
Each machine config defines what is included in the boot.tar.gz package. For beaglebone, include the uEnv.txt u-boot script that is used to start up the device. Change-Id: Ia509dd61c789fda53889cea8ea9221cfa8b469a9 Reviewed-by: Andy Nichols <andy.nichols@digia.com>
Diffstat (limited to 'classes')
-rw-r--r--classes/bootfs-image.bbclass51
1 files changed, 51 insertions, 0 deletions
diff --git a/classes/bootfs-image.bbclass b/classes/bootfs-image.bbclass
new file mode 100644
index 0000000..9218bd3
--- /dev/null
+++ b/classes/bootfs-image.bbclass
@@ -0,0 +1,51 @@
1#############################################################################
2##
3## Copyright (C) 2014 Digia Plc and/or its subsidiary(-ies).
4##
5## This file is part of the Qt Enterprise Embedded Scripts of the Qt
6## framework.
7##
8## $QT_BEGIN_LICENSE$
9## Commercial License Usage Only
10## Licensees holding valid commercial Qt license agreements with Digia
11## with an appropriate addendum covering the Qt Enterprise Embedded Scripts,
12## may use this file in accordance with the terms contained in said license
13## agreement.
14##
15## For further information use the contact form at
16## http://qt.digia.com/contact-us.
17##
18##
19## $QT_END_LICENSE$
20##
21#############################################################################
22
23BOOTFS_NAME = "${IMAGE_BASENAME}-boot-${MACHINE}-${DATETIME}"
24BOOTFS_LINK_NAME = "${IMAGE_BASENAME}-boot-${MACHINE}"
25
26BOOTFS_DEPENDS ?= ""
27
28do_bootfs () {
29 if [ -n ${BOOTFS_CONTENT} ]; then
30 exit 0
31 fi
32
33 mkdir -p ${S}/bootfs
34
35 for item in ${BOOTFS_CONTENT}; do
36 src=`echo $item | awk -F':' '{ print $1 }'`
37 dst=`echo $item | awk -F':' '{ print $2 }'`
38
39 install -m 0755 ${DEPLOY_DIR_IMAGE}/$src ${S}/bootfs/$dst
40 done
41
42 cd ${S}/bootfs
43 rm -f ${DEPLOY_DIR_IMAGE}/${BOOTFS_NAME}.tar.gz ${DEPLOY_DIR_IMAGE}/${BOOTFS_LINK_NAME}.tar.gz
44
45 tar czvf ${DEPLOY_DIR_IMAGE}/${BOOTFS_NAME}.tar.gz .
46 ln -s ${BOOTFS_NAME}.tar.gz ${DEPLOY_DIR_IMAGE}/${BOOTFS_LINK_NAME}.tar.gz
47}
48
49addtask bootfs before do_rootfs
50
51do_bootfs[depends] += "${BOOTFS_DEPENDS}"