summaryrefslogtreecommitdiff
path: root/packages/grub/grub_0.97.bb
AgeCommit message (Collapse)AuthorFiles
2008-10-18bb files: Revert the introduction of FILE_PRHolger Hans Peter Freyther1
This is a partial revert of aa03004ace2fabb135a6208ef8c2d2b312aa7b0b. The approach that was taken leads to disagreement and the change was pushed too early. DISTRO_PR is going to say and will be used inside the package creation. There will be more disucssion on the list about where to continue from here.
2008-10-15[PR] Change PR to FILE_PR and intro PR as FILE_PR + DISTRO_PRHolger Hans Peter Freyther1
Allow a distribution to globally bump the PR of every package this is useful when there was a change in the toolchain and every package is going to be different. find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR="/"FILE_PR ="/ {} \; find packages/ \( -name '*.bb' -or -name '*.inc' \) -exec sed -i s/"^PR ="/"FILE_PR ="/ {} \; Acked-By: Koen Kooi <koen@openembedded.org>
2008-09-27grub: fix version 0.97 for automake 1.10Henning Heinold1
* add patch from Kalev Lember * closes bug 4587 * bump PR
2007-08-24grub: rdepend on diffutils to get 'cmp' command needed by grub-installMarcin Juszkiewicz1
2007-02-18grub: fix SECTION, sanitize, separate out -doc package. Closes 1838.Rolf Leggewie1
2006-11-18Micro-Optimisation decreasing initial parsing time by 10%Holger Freyther1
python () {} and python __anonymous () {} are as the same says functions without a name. They get executed when the main bb file is completely parsed. This is used to set information like FILESDIR. This is a python method so it gets evaled which means compiled and executed a lot of times. By moving the code of the anonfunc into a proper method this is only compiled once. The result is is the 10% speed up when parsing. Reindent anonfuncs and new defs without tabs and four spaces
2006-04-28* new grub version 0.97 built and testedMarcin Juszkiewicz1
* create a /boot/grub symlink so stage_1.5 and stage_2 files can be found by bootloader - close #863