aboutsummaryrefslogtreecommitdiffstats
path: root/classes/rockchip-update-img.bbclass
blob: 37cd56ea520f5b1b728b4daf69e4c873ee7ced8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (C) 2014 NEO-Technologies
# Released under the MIT license (see COPYING.MIT for the terms)

inherit image_types

# This image depends on the rootfs ext3 image
IMAGE_TYPEDEF_rockchip-update-img = "ext3"

DEPENDS = "mkbootimg-native"

IMAGE_CMD_rockchip-update-img () {
	# Fetch bootloader
	# TODO

	# Fetch parameter
	# TODO

	# Build update.img using afptool and img_maker
	# TODO
	touch "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.update.img"
}