summaryrefslogtreecommitdiffstats
path: root/meta-initramfs
Commit message (Collapse)AuthorAgeFilesLines
* README: show github mirror URL in layer dependenciesMartin Jansa2013-04-291-1/+1
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* README: add -M to git send-email exampleMartin Jansa2013-04-291-1/+2
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* update README to dylanEric Bénard2013-04-231-3/+3
| | | | Signed-off-by: Eric Bénard <eric@eukrea.com>
* recipes: Unify indentationMartin Jansa2013-04-1512-87/+83
| | | | | | | | | | | | | | | | | | | | | | | | | * This change is only aesthetic (unlike indentation in Python tasks). * Some recipes were using tabs. * Some were using 8 spaces. * Some were using mix or different number of spaces. * Make them consistently use 4 spaces everywhere. * Yocto styleguide advises to use tabs (but the only reason to keep tabs is the need to update a lot of recipes). Lately this advice was also merged into the styleguide on the OE wiki. * Using 4 spaces in both types of tasks is better because it's less error prone when someone is not sure if e.g. do_generate_toolchain_file() is Python or shell task and also allows to highlight every tab used in .bb, .inc, .bbappend, .bbclass as potentially bad (shouldn't be used for indenting of multiline variable assignments and cannot be used for Python tasks). * Don't indent closing quote on multiline variables we're quite inconsistent wheater it's first character on line under opening quote or under first non-whitespace character in previous line. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Koen Kooi <koen@dominion.thruhere.net>
* initramfs-kexecboot-image: update IMAGE_INSTALL after mtd-utils splitAndrea Adami2013-02-191-2/+2
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* klibc.bbclass: force thumb-interworking for eabi builds on armv4Andrea Adami2013-02-161-0/+2
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* klibc_2.0.2: apply FIX_V4BX patch for armv4 targets onlyAndrea Adami2013-01-302-3/+24
| | | | | | | | | * linker fix is needed to avoid 'bx, lr' instruction on armv4 * patch is applied only for armv4 for eabi builds * http://wiki.debian.org/ArmEabiPort#Choice_of_minimum_CPU Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* kexecboot(-klibc): upgrade to b667914Andrea Adami2012-12-142-4/+4
| | | | | | | | | | * now including boot from ubifs * fixed extra menu redrawing * 24bpp fixes * first round of big-endian fixes Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* linux-yocto-tiny-kexecboot: add version 3.4Andrea Adami2012-12-041-0/+17
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: upgrade from 2.0.1 to 2.0.2Andrea Adami2012-11-1611-6/+5
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: refactor runtime deps for shared utilsAndrea Adami2012-11-162-40/+5
| | | | | | | rebased after d.expand / bb.data.expand change Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* Replace bb.data.* with d.*Paul Eggleton2012-10-281-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | Used sed expression given here: http://lists.linuxtogo.org/pipermail/openembedded-core/2011-November/012373.html Plus an additional expression for .expand. Full expression is: sed \ -e 's:bb.data.\(setVar([^,]*,[^,]*\), \([^ )]*\) *):\2.\1):g' \ -e 's:bb.data.\(setVarFlag([^,]*,[^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^, ]*\) *,\([^)]*\)):\2.\1,\3):g' \ -e 's:bb.data.\(getVarFlag([^,]*,[^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(getVar([^,]*\), \([^) ]*\) *):\2.\1):g' \ -e 's:bb.data.\(expand([^,]*\), \([^ )]*\) *):\2.\1):g' \ -i `grep -ril bb.data *` Some minor correction in systemd.bbclass was needed for some expressions that didn't quite match the regex in the desired way; additionally a few instances were manually changed. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
* PACKAGES_DYNAMIC: use regexp not globMartin Jansa2012-10-191-1/+1
| | | | | | | | | | * bitbake uses PACKAGES_DYNAMIC as regexp ^ could make matching faster (and it will be more clear that we're expecting regexp not glob) * made all those last '-' optional, use .* (or nothing) * use += instead of = in most cases to keep ${PN}-locale from bitbake.conf:PACKAGES_DYNAMIC = "^${PN}-locale-.*" Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* kexec-tools.klibc_2.0.2: fix checksumsAndrea Adami2012-09-171-2/+2
| | | | | | | | * those are the SRC_URI checksums since 15-Jan-2012 22:10 * re-uploaded after kernel.org outage Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* initramfs-kexecboot-image: zap LDCONFIGDEPENDAndrea Adami2012-08-241-1/+1
| | | | | | | | | * Override the settings of image.bbclass: * we don't need ld.so.cache in our minimal image. * While there, remove now unused ONLINE_PACKAGE_MANAGEMENT var. Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: upgrade from 2.0 to 2.0.1Andrea Adami2012-08-1616-2425/+3
| | | | | | | * remove unused patches legacy of oe-classic Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* initramfs-kexecboot-image: fix dependency chain was: ['ubiattach']Andrea Adami2012-08-161-1/+3
| | | | | | | | | * unfortunately there is no package-split for the mtd-utils recipe * to have ubiattach we need to install the full package * (or use ubiattach-klibc) Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: fix runtime dependencies for shared utilsAndrea Adami2012-08-162-3/+43
| | | | | | | | | * and remove bogus dependencies for the static utils * introduced by do_split_packages * bump INC_PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* recipes: convert tabs to 4 spaces in populate_packagesMartin Jansa2012-07-191-4/+4
| | | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* ubi-utils-klibc: update to patched v. 1.5.0Andrea Adami2012-07-112-3/+20
| | | | | | | | | | | | * Fix build failing because of UBI_IOCSETPROP -> UBI_IOCSETVOLPROP renaming. * This patch follows the one in oe-core for mtd-utils_1.5.0 * which was staging an older version of the ubi-user.h header. * We need to match the renaming done in kernel 3.0 * http://lists.infradead.org/pipermail/linux-mtd/2011-March/ * 034419.html Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* kexecboot_git: bump PR after recipe update.Andrea Adami2012-07-111-1/+1
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* meta-initramfs: append to BBPATH instead of prepend so order of ↵Martin Jansa2012-06-211-3/+8
| | | | | | | | bblayers.conf is respected Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Acked-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* linux-kexecboot: remove all, now we use linux-yocto-tiny-kexecbootAndrea Adami2012-06-204-173/+0
| | | | | | | | | * The linux-yocto-tiny-kexecboot recipe can be extended and support * more devices migrating the patches and renaming the defconfig as * done for Sharp Zaurus devices. Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* kexecboot: upgrade and move to git tag 0daa77Andrea Adami2012-06-203-6/+7
| | | | | | | | | | | | * new git repository on github * new LABEL separator * text-ui fallback * install /sys for upcoming ubifs detection * menu-bug fix * minor fixes Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* kexecboot-cfg: update and use new LABEL separatorAndrea Adami2012-06-201-4/+3
| | | | | | | * previously the sections were separated by KERNEL string Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* initramfs-kexecboot images: install ubiattach for boot from UBI volumesAndrea Adami2012-06-202-2/+2
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: release klibc 2.0Andrea Adami2012-06-0515-2/+2
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* ubi-utils-klibc: more patch-cleaningsAndrea Adami2012-06-054-79/+16
| | | | | | | | * remove unnecessary patches after klibc upgrades * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: update to git tag 49419d2df2018fff5ae6250cf55b16fa65bdc490Andrea Adami2012-06-051-2/+2
| | | | | | | | * still pre-2.0 * bump INC_PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* ubi-utils-klibc: clean ubiformat patchAndrea Adami2012-05-242-14/+4
| | | | | | | | | * fixes have been committed in klibc for stdio and the additional * fflush is not necessary anymore (runtime tested pressing CTRL+D) * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: upgrade to git tag c2c7f19Andrea Adami2012-05-241-2/+2
| | | | | | | | | * include last patches of may 2012 * tracking upstream wrt forthcoming 2.0 release * bump INC_PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc.bbclass: use klcc as CPPAndrea Adami2012-05-241-0/+1
| | | | | Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: upgrade to latest git (pre 2.0)Andrea Adami2012-05-1416-61/+5
| | | | | | | | | | | | * remove cherry-picked patch applied in master * remove comments in klcc recipe * remove slashes from paths in klibc recipe * revert involontary oe_runmake install changes * reset INC_PR * v2 removes obolete cleanings wrt headers_install Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* ubi-utils-klibc: clean patchAndrea Adami2012-05-142-30/+2
| | | | | | | | * after klibc refactoring * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc_1.5.26: now build against linux-libc-headersAndrea Adami2012-05-146-38/+53
| | | | | | | | | | | * add install-patch creating symlinks as done by debian * extra add the mtd headers * refresh patches (split out prefix.patch) * recipe is now not machine-specific anymore * bump INC_PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* ubi-utils-klibc: add the remaining ubicrc32, ubinize, ubiformatAndrea Adami2012-05-105-30/+83
| | | | | | | | | | | | | | | * add more hacks to compile * binaries tested on Zaurus poodle/corgi (with patched kernel) * bump PR * NOTES * strange behavior wrt getopt for at least ubiformat: * you should pass the options first, i.e. * ubiformat -O 512 /dev/mtd3 *works* * ubiformat /dev/mtd3 -O 512 *fails* Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: upgrade from 1.5.25 to 1.5.26Andrea Adami2012-05-1014-2/+3
| | | | | | | | * minor updates, still waiting for release 2.0 * v2 adds another (sometimes) missing header Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* ubi-utils-klibc: initial commit of version 1.4.9Andrea Adami2012-04-305-0/+208
| | | | | | | | * Initially only ubiattach was targeted (for kexecboot project). * Based on klibc_1.5.25, will be revised once new klibc is out. Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* README: keep PATCH prefix in subject-prefix, some people filter their inbox ↵Martin Jansa2012-04-261-0/+2
| | | | | | based on that Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* klibc_1.5.25: add patches to build with 3.2 kernel headersAndrea Adami2012-04-243-1/+61
| | | | | | | | | | * kernel_3.2__aligned_u64.patch is already upstream * hack around the missing headers (now in /generated/asm) * bump INC_PR * waiting for klibc_2.0 release Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* linux-yocto-tiny-kexecboot: initial commit of version 3.2Andrea Adami2012-04-201-0/+17
| | | | | | | | * this is the skeleton for .bbappend recipes * residing in the BSP layers Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* linux-kexecboot-3.2: upgrade to 3.2.12Martin Jansa2012-03-291-4/+4
| | | | Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
* linux_kexecboot_3.2: upgrade from 3.2.8 to 3.2.9Andrea Adami2012-03-071-4/+4
| | | | | | | | | * apply latest patchset * bump PR * catch up and sync with linux-yocto (wip) Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc: add MIT LicenseAndrea Adami2012-03-011-2/+2
| | | | | | | | | | * After a talk with Beth Flanagan licensing is now clear: * "LICENSE = "BSD-3-Clause & GPL-2.0 & MIT" (If it's --without-zlib). * If not then it's: LICENSE = "BSD-3-Clause & GPL-2.0 & MIT & Zlib" * bump INC_PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* klibc_1.5.25: Fetcher and QA fixesAndrea Adami2012-02-296-17/+9
| | | | | | | | | | | | | | * fix unfetchable SRC_URI and use git fetcher instead * and remove checksums file * adapt ${S} * fix QA about non -staticdev package contains static .a library * fix QA about /bin installed but not shipped * fix license and relative QA * bump INC_PR * patchset untouched awaiting klibc_2.0, expected in March 2012 Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* linux-kexecboot_3.2: update from 3.2.7 to 3.2.8Andrea Adami2012-02-291-4/+4
| | | | | | | | | * apply latest stable patchset to match linux-yocto_3.2 * (work in progress about using linux-yocto-tiny as base for kexecboot) * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* linux-kexecboot_3.2: move from 3.2.1 to 3.2.7Andrea Adami2012-02-231-4/+4
| | | | | | | | * apply latest stable patchset * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* kexecboot_cfg: add missing default OE icon.xpmAndrea Adami2012-02-232-3/+46
| | | | | | | | | | * while there do minor cleanings wrt DISTRO vars: * remove ${@base_conditional('DISTRO_TYPE',... * fix label of second kernel stanza * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* meta-initramfs: import linux-kexecboot_3.2 and _git from meta-handheldAndrea Adami2012-02-222-0/+36
| | | | | | | * bump PR Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
* meta-initramfs: add linux-kexecboot_3.1 from meta-handheldAndrea Adami2012-02-222-0/+137
| | | | | | | * and add revised linux-kexecboot.inc Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>