summaryrefslogtreecommitdiff
path: root/recipes-bsp/at91bootstrap/at91bootstrap_3.5.3.bb
blob: 447d77f9c85992187ed74dbf3e0566764f9ed6d6 (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
require at91bootstrap_3.5.inc

PR = "r1"

LICENSE = "custom-freely-distributable"
LIC_FILES_CHKSUM = "file://main.c;beginline=6;endline=26;md5=6fca71334c9e8b7d033296123c91437f"

SRCREV = "v${PV}"
SRC_URI = "git://github.com/linux4sam/at91bootstrap \
		file://at91bootstrap-3.5.2-add-install.patch \
		file://at91bootstrap-3.5.2-onetime-slow-clock-switch.patch \
        file://at91sam9x5_4bit_pmecc_header.bin "

S = "${WORKDIR}/git"

SRC_URI_append_mtcdt = " file://at91bootstrap-3.5.3-mtcdt.patch "

# generate a bootstrap file padded with the header needed for 4-bit PMECC
# The padded file can be flashed via u-boot without any need to set the PMECC header using SAM-BA
do_pad_4bit_pmecc() {
	cp -f ${WORKDIR}/at91sam9x5_4bit_pmecc_header.bin ${DEPLOY_DIR_IMAGE}/at91bootstrap_pmecc_padded.bin
	cat ${DEPLOY_DIR_IMAGE}/at91bootstrap.bin >> ${DEPLOY_DIR_IMAGE}/at91bootstrap_pmecc_padded.bin
}

do_install_append() {
	do_pad_4bit_pmecc
}