aboutsummaryrefslogtreecommitdiffstats
path: root/classes
AgeCommit message (Collapse)Author
2015-02-05image_types_fsl.bbclass: fix typosAlexandre Belloni
Few comments are using bytes instead of block. Also remove useless seek=1 Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2015-02-05image_types_fsl.bbclass: Drop UBOOT_PADDING supportOtavio Salvador
The U-Boot 2009.08 has been removed so every version now supported does not use padding. This patch drops the code which added the possibility of use old U-Boot version but which was unused for long time. Reported-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-12-06image_types_fsl.bbclass: Use 69K as offset to load imageOtavio Salvador
The U-Boot mainline uses 69K as offset so we ought to use it here; this aligns the SD card image layout to work out of box with all U-Boot mainline based SPL boards. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-10-11image_types_fsl.bbclass: typo fix (s/Unkown/Unknown/)Mario Domenech Goulart
Signed-off-by: Mario Domenech Goulart <mario@ossystems.com.br> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-09-01fsl-u-boot-localversion: Easy LOCALVERSION handlingOtavio Salvador
This class allow for easy extending of U-Boot recipes to easy the LOCALVERSION handling, allowing to reuse of code between different U-Boot recipes The following options are supported: SCMVERSION Puts the Git hash in U-Boot local version LOCALVERSION Value used in LOCALVERSION (default to '+fslc') This about avoid code duplication among Layerscape and i.MX. Change-Id: Icec618092d1f70606051619b6f6118f50e7f1ba5 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-09-01fsl-kernel-localversion: Easy LOCALVERSION handlingOtavio Salvador
This class allow for easy extending of kernel recipes to easy the LOCALVERSION handling, allowing to reuse of code between different kernel recipes The following options are supported: SCMVERSION Puts the Git hash in kernel local version LOCALVERSION Value used in LOCALVERSION (default to '+fslc') This about avoid code duplication among Layerscape and i.MX. Change-Id: I3999dbdc2cb761063fe5f83dea65ddb14adec80c Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-06-05image_types_fsl.bbclass: Add U-Boot NAND support for i.MX23/i.MX28Alexey Ignatov
This adds support to generate the U-Boot image for use with NAND (uboot.mxsboot-nand) and allows for custom params to be given for mxsboot using the MXSBOOT_NAND_ARGS variable which should be defined in the machine definition file. Signed-off-by: Alexey Ignatov <lexszero@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-03-17image_types_fsl.bbclass: Avoid wrong dependency for no bootloaderOtavio Salvador
When IMAGE_BOOTLOADER is empty we shouldn't add '':do_deploy as dependency as it does not exist. So handle this corner case to allow bootloader-less images to build fine. Change-Id: I04dc81bbb4184f79e88e1693239f2628a9819d7d Reported-by: Ilya Smelykh <ilya.smelykh@gmail.com> Reported-by: Tarek El-Sherbiny <tarek.elsherbiny@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-03-11mfgtool-initramfs-image.bbclass: rename PACKAGE_GROUP to FEATURE_PACKAGESJavier Viguera
Clean bitbake warning: WARNING: PACKAGE_GROUP is deprecated, please use FEATURE_PACKAGES instead Signed-off-by: Javier Viguera <javier.viguera@digi.com>
2014-03-11image_types_fsl: Use explicit task dependency to boost buildOtavio Salvador
Instead of depending of all tasks of recipes, we should depend on the required task so we can start building the rootfs earlier in the build process and earn some build time gain. Change-Id: I770afe79edba0320ae697f9bcdaf340fbcb09eeb Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-03-03mfgtool-initramfs-image.bbclass: Abstracts the MfgTool's initramfs needsOtavio Salvador
Manage the initramfs requirements for Manufacturing Tool use and allow future addition of new filesystem support if needed. Change-Id: Ia3a1f0d32d1a12209262096162adeb36909c509b Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-02-28image_types_fsl.bbclass: Fix imx-bootlets build with new image codeOtavio Salvador
Since the image_types.bbclass is not cd'ing to ${DEPLOY_DIR_IMAGE} anymore, the imx-bootlets code need to be reworked to take this into account. Change-Id: Ic7890557e93b47997590143047816ecb0378ad13 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Reviewed-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
2014-02-27image_types_fsl.bbclass: fix barebox bootstream generationAlexandre Belloni
Since the image_types.bbclass is not cd'ing to ${DEPLOY_DIR_IMAGE} anymore, do that in a subshell before generating the boostream. This fixes the following build failure: ERROR: Error: The image creation script '.../core-image-minimal/1.0-r0/temp/create_image.barebox.mxsboot-sdcard' returned 1: error: unable to find command file imx-bootlets-barebox_ivt.bd-cfa10058 Change-Id: I5881c6bc333bef42a3f61d07b7bbd6c87c7d45e7 Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
2014-02-21image_types_fsl.bbclass: Add fstype dependencyOtavio Salvador
The sdcard requires the rootfs filesystem to be built before using it so we must make this dependency explicit. Change-Id: Ibacba4c2ff5250785b50d6a7bc7ddf77f6309bb6 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2014-02-19fsl-dynamic-packagearch.bbclass: fix typoJavier Viguera
s/PACHAGE_ARCH/PACKAGE_ARCH Signed-off-by: Javier Viguera <javier.viguera@digi.com>
2014-02-14image_types_fsl: explicitly state the origin of boot scriptsEric Nelson
Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
2014-01-25image_types_fsl.bbclass: Add U-Boot SPL supportdv@pseudoterminal.org
If the SPL_BINARY value is not empty, then the class will use an alternative code path for copying U-Boot on the SD card. u-boot.img is used (not .imx), and the SPL binary is prepended. With empty SPL_BINARY values, the behavior is just like before. Signed-off-by: Carlos Rafael Giani <dv@pseudoterminal.org>
2013-10-30image_types_fsl.bbclass: Support i.MX25 platformsGary Thomas
Signed-off-by: Gary Thomas <gary@mlbassoc.com>
2013-10-28fsl-eula-unpack: add FSL_EULA_FILE to vardepsexcludeChristopher Larson
FSL_EULA_FILE is defined with :=, which means it contains a full absolute path to the layer directory. If this is allowed to make it into the task checksum, it becomes impossible to use the shared states for these recipes without having meta-fsl-arm in the exact same path in the filesystem it was in when the sstate archives were created. Add FSL_EULA_FILE to do_unpack[vardepsexclude]. Signed-off-by: Christopher Larson <kergoth@gmail.com>
2013-09-25fsl-dynamic-packagearch.bbclass: Dynamically set package architectureOtavio Salvador
This allow to easy reuse of binary packages among similar SoCs. The usual use for this is to share SoC specific packages among different boards. The class can be used to share GPU packages for i.MX53 boards (as all them share the AMD GPU) and i.MX6 based boards (as all them share Vivante GPU). It inspects the database and identify if the package provides or depends on one of subarch provided values and if it does, it sets the PACKAGE_ARCH for MACHINE_SUBARCH value otherwise if it matches in the machine specific filter, it sets it to MACHINE_ARCH. This reduces the amount of packages we build, for example in case of core-image-x11 we: $ ls -l tmp/deploy/rpm/cortexa9hf_vfp_neon_mx6/*.rpm | wc -l 75 So we reuse 75 binaries; these would be build otherwise. It being dynamically set or statically set it has following benefits: * correctness: it is easier to ensure the system behaves as expected * correctness for non-tracked recipes: new recipes, if depending on virtual/kernel or GPU has the right architecture choosen, without a .bbappend file for them * safeness: non-expert users get a more adequate behavior as the complexity of choosing the right architecture is simplified for them * easy maintenance: it is easier for me, as maintainer, to maintain a code which decides what to do than having hundreds of bbappend files for it Change-Id: Icb0a8060e862c8eeb166c45d1b39c40de07b01d8 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2013-08-29image_types_fsl: mxs: Add support for a barebox bootstreamAlexandre Belloni
Change-Id: Ibe7afdd6e4c2f5db73b42cf6b39df9756bdb9fb8 Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
2013-07-29image_types_fsl.bbclass: Add vf60 SoC family supportOtavio Salvador
The Vybrid SoCs use same image layout as other i.MX so use it. Change-Id: I0e1de1b917aed249196bef463ae1017c65254ef5 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2013-04-24image_types_fsl.bbclass: Add support for kernel image typesS. Fricke
Use the KERNEL_IMAGETYPE variable, making the class configurable for all supported kernel image types. This patch is tested with a 3rd-party board and a sabrelite board. Signed-off-by: S. Fricke <sfricke@data-modul.com>
2013-03-26image_types_fsl.bbclass: fix partition type for SD card boot partition1.4_M5Vladan Jovanovic
Create first partition on SD card as fat32. As boot.img is formatted as vfat, this will ensure information in partition table matches actual partition type. Signed-off-by: Vladan Jovanovic <vladan.jovanovic@gmail.com>
2013-03-07image_types_fsl.bbclass: Fix deploy of mxsboot-sdcard imageOtavio Salvador
The mxsboot-sdcard image is the current way we use to generate the U-Boot bootstream blob during image generation however Yocto image system enforces some naming schema so the symbolic links does work and we weren't following those. This patch uses the '${IMAGE_NAME}' variable and the proper image suffix so the symbolic links now fully work. Fixes [YOCTO #3871]. Change-Id: I7f96dcdd58e0a726b8084c1f87ff10732fe259df Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-12-21image_types_fsl: Fix .dtb file deployDaiane Angolini
.dtb file is copied to 'Boot' partition, the same partition uImage is placed. Now, more than one .dtb can be copied, if board conf file determinates more than one .dts file. Signed-off-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-12-12image_types_fsl.bbclass: Add support to install boot scriptsOtavio Salvador
Some machines might want to provide boot scripts for use. This now can be accomplished using BOOT_SCRIPTS variable in following format: <source>:<destination> Thus any file in deploy directory can be installed in the boot partition of the sdcard, easily. Change-Id: Ic1eafd2be3559b5c9da43dcc6f54f1b480dbc647 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-12-12image_types_fsl.bbclass: Add support to not use bootloader for iMXOtavio Salvador
Some machines might come with a bootloader in an internal flash (a SPI NOR, for example) so not requiring a boot loader in the image. Change-Id: Id1a69c6c6b60639694a64b2b7badd16ee4b0d2f7 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-12-04fsl-eula-unpack: Avoid unbound local exception.Alex Gonzalez
This commit fixes an unbound local exception caused by save_cwd not being defined when fsl-eula is not true. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-10-30image_types_fsl.bbclass: Fix mxs' imx-bootlets supportOtavio Salvador
The imx-bootlets (and per design elftosb) enforce the use of offset so we skip the first 1024KiB from the disk and start from there instead of 4MiB as done for other SoCs. Change-Id: I51e2989ef2007aa752e67f7d1b38a9de5c1ff9c8 Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-10-29image_types_fsl: Align SD partition and optimize final SD imageAndrei Gherzan
SD image file was 4G in size but actually the rootfs partition was only 60MB (in some images). The image file size is not fixed anymore but calculated inside this class. In this way we will setup the partition for rootfs to fit the ext file used as SDIMG_ROOTFS. By default the free space is calculated with IMAGE_OVERHEAD_FACTOR which is by default 1.3. If more free space is needed this can be overwritten. IMAGE_ROOTFS_ALIGNMENT set at 4096. This should be the best value for a SD card. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-10-02fsl-eula-unpack.bbclass: Support Freescale EULA binaries unpackOtavio Salvador
This class provides the mechanism used for unpacking the .bin file downloaded by HTTP and handle the EULA acceptance. Change-Id: I88857c7dac94568c5bced4e712744087638de68a Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Acked-by: Daiane Angolini <daiane.angolini@freescale.com>
2012-09-24image_types_fsl.bbclass: Fix 'mxs' handle of Kernels without dtb filesOtavio Salvador
The code where failing if used with no dtb files available in deploy directory. Change-Id: Ib08e23f3d7761b0991fcce009fb93290d698f7c3 Reported-by: Tim Michals <tcmichals@gmail.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-08-06Merge remote-tracking branch 'freescale/denzil' into masterOtavio Salvador
* freescale/denzil: image_types_fsl.bbclass: Calculate BOOT_BLOCKS for new boot partition num linux-imx (2.6.35.3): Kernel patches from Freescale GIT linux-imx (2.6.35.3): reduce delta against kernel source mx5_defconfig
2012-08-06image_types_fsl.bbclass: Calculate BOOT_BLOCKS for new boot partition numJeremy Stashluk
The empty 1K at the beginning of the disk is no longer a partition, so the numbers reported by parted have shifted by one. Signed-off-by: Jeremy Stashluk <jstashluk@dekaresearch.com> Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-17image_types_fsl.bbclass: do not create a partition from 0 to 1MB in i.MX sdcardOtavio Salvador
The bootrom boots from a fixed 1K offset so we don't need a partition there and having one makes udev or kernel to probe for it and output error messages in bootlog: ,----[ boot error messages ] | ... | EXT4-fs (mmcblk0p1): VFS: Can't find ext4 filesystem | EXT3-fs (mmcblk0p1): error: can't find ext3 filesystem on dev mmcblk0p1. | EXT2-fs (mmcblk0p1): error: can't find an ext2 filesystem on dev mmcblk0p1. | FAT: bogus number of reserved sectors | VFS: Can't find a valid FAT filesystem on dev mmcblk0p1. | cramfs: wrong magic | FAT: bogus number of reserved sectors | VFS: Can't find a valid FAT filesystem on dev mmcblk0p1. | ... `---- Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-17image_types_fsl.bbclass: do not create a partition from 0 to 1MB in i.MX sdcardOtavio Salvador
The bootrom boots from a fixed 1K offset so we don't need a partition there and having one makes udev or kernel to probe for it and output error messages in bootlog: ,----[ boot error messages ] | ... | EXT4-fs (mmcblk0p1): VFS: Can't find ext4 filesystem | EXT3-fs (mmcblk0p1): error: can't find ext3 filesystem on dev mmcblk0p1. | EXT2-fs (mmcblk0p1): error: can't find an ext2 filesystem on dev mmcblk0p1. | FAT: bogus number of reserved sectors | VFS: Can't find a valid FAT filesystem on dev mmcblk0p1. | cramfs: wrong magic | FAT: bogus number of reserved sectors | VFS: Can't find a valid FAT filesystem on dev mmcblk0p1. | ... `---- Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-07-10image_types_fsl.bbclass: add support to use Device Tree for Linux kernelOtavio Salvador
To support new kernel, which use Device Tree for description of hardware and machine, the image generation needs to be reworked. U-Boot supports it out of box, so it just need to be available for reading while the imx-bootlets we need to append the dtb file on the very end of the zImage file. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-21image_types_fsl.bbclass: i.MXS needs to use linux.bdOtavio Salvador
linux_ivt.bd module is dependant of mx25 and cannot be used by i.MXS family. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-21image_types_fsl.bbclass: fix imx-bootlets' linux.sb generationOtavio Salvador
When updating to imx-bootlets 10.12.01 a leftover configuration from previous release has been left by mistake. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-21image_types_fsl.bbclass: add imx-bootlets support for i.MXSOtavio Salvador
i.MXS SoC family has support to boot with imx-bootlets (the default when using LTIB) and the only current supported way of booting i.MX23 machines. The imx-bootlets has some quite specific requirements regaring the partition layout and includes the kernel binary appended to the boot stream so we drop the third partition reducing the wasted space of SD card. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-21image_types_fsl.bbclass: remove i.MXS specific code from i.MXOtavio Salvador
i.MXS generation is now handled completely separated so i.MX doesn't every gets called for 'mxs' SoC family. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-21image_types_fsl.bbclass: use MiB size to generate i.MX SD cardsOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-21image_types_fsl.bbclass: drop typo in comments generation commandsOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-19image_types_fsl: Fix the size of the created file fs with mkfs.vfatAndrei Gherzan
It looks like mkfs.vfat is using 1024B block size. The returned value of BOOT_BLOCKS was in blocks of 512B. This needs to be changed in blocks of 1024B. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-05-19image_types_fsl.bbclass: Fix the calculation of BOOT_BLOCKSAndrei Gherzan
In awk the first cell/item is $1 not $0 in this way the size of the partition from parted is actually $4 not $3. Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
2012-05-17image_types_fsl.bbclass: document i.MX and i.MXS differences in partitioningOtavio Salvador
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-02image_types_fsl.bbclass: split sdcard generation by SoC familyOtavio Salvador
i.MXS and i.MX SoC families has enough partition layout differences that justify to have a specific code for each SoC family to easy maintenance and readability of code. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-05-01image_types_fsl.bbclass: remove image fstypes definition to i.MXS SoCsOtavio Salvador
The SoC image fstypes needs to be assigned in the machine definition or the default ones are not used. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
2012-04-30image_types_fsl.bbclass: avoid use of 'sed' to change partition typeOtavio Salvador
The 'sed' might fail in some systems due user right and restrictions so we use 'dd' and 'echo' to do the same trick. Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> Reported-by: "John Passaniti" <jpassaniti@ashly.com>