* In the SDK prebuilt-images directory add a README file that details where the images belong on the SD card.
Signed-off-by: Chase Maupin <[email protected]> --- .../tisdk-uenv.bb => tisdk-readme/tisdk-readme.bb} | 6 ++-- .../recipes-tisdk/tisdk-readme/tisdk-readme/README | 21 ++++++++++++++++++++ 2 files changed, 24 insertions(+), 3 deletions(-) copy meta-arago-distro/recipes-tisdk/{tisdk-uenv/tisdk-uenv.bb => tisdk-readme/tisdk-readme.bb} (61%) create mode 100644 meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme/README diff --git a/meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv.bb b/meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme.bb similarity index 61% copy from meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv.bb copy to meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme.bb index e67ea97..6fdcaff 100644 --- a/meta-arago-distro/recipes-tisdk/tisdk-uenv/tisdk-uenv.bb +++ b/meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme.bb @@ -1,9 +1,9 @@ -DESCRIPTION = "Package that will install a uEnv.txt file into the SDK prebuilt-binaries directory" +DESCRIPTION = "Package that will install a README file into the SDK prebuilt-binaries directory" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420" SRC_URI = "\ - file://uEnv.txt \ + file://README \ " PR = "r0" @@ -16,7 +16,7 @@ S = "${WORKDIR}" do_install () { install -d ${D}/board-support/prebuilt-images - install -m 0644 ${S}/uEnv.txt ${D}/board-support/prebuilt-images/ + install -m 0644 ${S}/README ${D}/board-support/prebuilt-images/ } FILES_${PN} += "board-support/*" diff --git a/meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme/README b/meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme/README new file mode 100644 index 0000000..1537fef --- /dev/null +++ b/meta-arago-distro/recipes-tisdk/tisdk-readme/tisdk-readme/README @@ -0,0 +1,21 @@ +The files contained in this directory represent the images that were built +as part of the original SDK build and packaging process. They are meant +to serve as a restore and starting point for your development. In order +to use these images with an SD card they should be placed in the appropriate +locations. + +By default these locations are: + +================================================================================| FILE | LOCATION | +================================================================================ +| MLO | boot partition +| u-boot.img | boot partition +| uEnv.txt | boot partition +| uImage | /boot directory of the rootfs partition +| *.dtb | /boot directory of the rootfs partition +================================================================================ + +By default the boot loaders are read from the first FAT partition, which is +usually called the "boot" partition. Then the bootloader will look for the +uImage and DTB files in the /boot directory of the EXT partition, which is +usually called the "rootfs" partition. -- 1.7.0.4 _______________________________________________ meta-arago mailing list [email protected] http://arago-project.org/cgi-bin/mailman/listinfo/meta-arago
