diff options
author | John Klug <john.klug@multitech.com> | 2017-05-23 18:23:27 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2017-05-23 18:23:27 -0500 |
commit | f8f2917c2aba2563ca4501ae495dba708e8d0844 (patch) | |
tree | 09fac3748456c5566861db32078397a783458ee9 | |
parent | bf821d0e8272f487a9f8d689570742e69d487f3f (diff) | |
download | meta-multitech-f8f2917c2aba2563ca4501ae495dba708e8d0844.tar.gz meta-multitech-f8f2917c2aba2563ca4501ae495dba708e8d0844.tar.bz2 meta-multitech-f8f2917c2aba2563ca4501ae495dba708e8d0844.zip |
Set the orig file to match the old at91bootstrap build.
-rw-r--r-- | recipes-bsp/at91bootstrap/at91bootstrap_3.5.3.bb.orig | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/recipes-bsp/at91bootstrap/at91bootstrap_3.5.3.bb.orig b/recipes-bsp/at91bootstrap/at91bootstrap_3.5.3.bb.orig new file mode 100644 index 0000000..c6ae7a7 --- /dev/null +++ b/recipes-bsp/at91bootstrap/at91bootstrap_3.5.3.bb.orig @@ -0,0 +1,31 @@ +require at91bootstrap_3.5.inc + +PR = "r2" + +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 \ + file://at91bootstrap-3.5.3-remove-std-includes.patch \ + " + +S = "${WORKDIR}/git" + +SRC_URI_append_mtcdt = " file://at91bootstrap-3.5.3-mtcdt.patch " +SRC_URI_append_mtcap = " 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 +} + |