summaryrefslogtreecommitdiff
path: root/contrib
AgeCommit message (Collapse)AuthorFiles
2008-05-18marketing: add oe-flyer and oe-posterMichael Lauer3
2008-05-17openembedded-essential: update to Standards 3.7.3 and add dh_clean to clean ↵Rolf Leggewie2
target
2008-05-04divers: s/bugs.openembedded.org/bugs.openembedded.net/ for all of OERolf Leggewie1
* bugs.openembedded.org has frequent DNS issues, .net is better maintained both should usually point to the same server and bugzilla installation
2008-04-25Git to rescue. Make a change to create a head again. Update the example scriptHolger Freyther1
2008-04-23Openmoko: replace OpenMoko by OpenmokoJohn Lee1
2008-04-16angstrom contrib: add sort.shKoen Kooi1
2008-04-10python 2.5.2 python-xml does _not_ RDEPENDS on python-netclient (what was i ↵Michael Lauer1
thinking?)
2008-03-31mtn2git: Add an example script that can be used to update the git mirrorHolger Freyther1
This is an example as it is using relative paths and needs some changes to work for you. It assumes that you have a git repository (git-init was ran) and then will update it there. Before each update it will clone the git repository and copy the old state files into the repository. So in case something goes wrong you can do a post mortom. The state files are relatively small and the git repository is working with hardlinks so it does not even take too much space. On first pull you need to run git-repack or git-gc
2008-03-26fic-gta0? : renamed fic-gta0? to om-gta0? to reflect true name of deviceGraeme Gregory4
2008-03-21python 2.5 improve pysqlite2|3 packaging. Patch based on work by Aloisios ↵Michael Lauer1
Almeida.
2008-03-18angstrom/build-feeds.sh: add setserial, openvpn, vpnc to feedJunqian Gordon Xu1
2008-03-06python 2.5.2 ship _sqlite3.so binary module in python-sqlite3 (thanks emdete ↵Michael Lauer1
for spotting)
2008-03-06angstrom release builder: turn on glibc againKoen Kooi1
2008-03-05angstrom build release: do uclibc stuff first, so initramfs kernels build ↵Koen Kooi1
properly
2008-03-01angstrom feed builder: add more browsersKoen Kooi1
2008-03-01angstrom contrib: add upload script from 2008 feedsKoen Kooi1
2008-02-29contrib: move svgs into dedicated directoryMichael Lauer3
2008-02-27contrib: Add powered by OE logoRichard Purdie1
2008-02-09contrib/angstrom/rss*.php: Drop old non-optimal version, rename rss2 to rss.Paul Sokolovsky2
* Per RFC on the list.
2008-02-09contrib/angstrom/rss2.php: Add date of build to subject.Paul Sokolovsky1
* To help with simple-minded browsers which don't show pubDate (like Firefox). * Per RFC on the list.
2008-02-06contrib/image-convert: Add scripts to convert FS images to different formats.Paul Sokolovsky6
* Per RFC on the list.
2008-02-05oe-stylize.py: add support for the PE (package epoch) variablePhilipp Zabel1
2008-01-24contrib/distro-packages: provide patch for building ubuntu packagesRolf Leggewie1
2008-01-24contrib/distro-packages: fix an error in changelog so devscripts do work againRolf Leggewie1
2008-01-22python 2.5.1 ship sitecustomize.py that enables some convenient features whenMichael Lauer1
working with the interactive interpreter: attribute completion and persistent command history
2008-01-19openembedded-essential: add bc and python-pysqlite2 to debRolf Leggewie2
* I had been under the false impression these were already part of the deb definition
2008-01-19openembedded-essential: commit version 1.4Rolf Leggewie8
* remove gfortran from deb definition * add bc and python-pysqlite to rpm definition
2008-01-13* Incrementally updating the former heads did not work right. Sometimes we haveHolger Freyther1
saved bogus data and it could be dangerous. * Back-out this change and save the heads at the end of the script.
2008-01-13* Import revisions without a parent properly! The diffing would have been ↵Holger Freyther1
all right but we have not diffed the two manifests at all. Now we are diffinf an empty manifest against the initial one.
2008-01-13python 2.5.1 remove bogus RPROVIDE for python-curses, RRECOMMEND python-readlineMichael Lauer1
2008-01-08angstrom build feeds: sync with stable branchKoen Kooi1
2008-01-08contrib/mtn2git/mtn2git.py: Start diffing the manifests and find ↵Holger Freyther1
added,deleted dirs and added,deleted,modified files -Fix bug with gathering the all_deleted (I got the union wrong) -Diff everything and change what we store inside the sets. Storing the rev in the set is superfluous.
2008-01-08contrib/mtn2git/mtn2git.py: Return the tree if it is was not in the cache!Holger Freyther1
2008-01-08merge of '4758ca456d2363e1b00659c33da6c72ea4ac3074'Holger Freyther7
and 'e2c29cfbd284f015d3c4165234bbaf65c184d38d'
2008-01-08contrib/mtn2git/mtn2git.py: Add the TODO for sanity checking!Holger Freyther1
2008-01-08contrib/mtn2git/mtn2git.py: Stub the most important function. diff_manifest ↵Holger Freyther1
will tell us what to do
2008-01-08contrib/mtn2git/mtn2git.py: Add modifications to the right list, check if ↵Holger Freyther1
_file_revision and file_revision of the manifest are equal
2008-01-08contrib/mtn2git/mtn2git.py: Built a fifo to avoid parsing the manifests all ↵Holger Freyther1
over again I decided to use a FIFO for two reasons: -Simplicity in the implementation -Parent and Childs are normally close (<= 100 revisions) to each other. So having the fifo should avoid parsing the parent manifest over and over again. Also with "merge early and merge often" the 100 revs should be enough to catch merges as well.
2008-01-08contrib/mtn2git/mtn2git.py: Have only one function that is parsing the manifestHolger Freyther1
Build a directory tree from a manifest with all the information we need. This currently is a list of directory names and a list of files (with absolute paths) and their revision and the executable attribute.
2008-01-08contrib/mtn2git/mtn2git.py: We are not interested in these bits. Do not ↵Holger Freyther1
store them.
2008-01-08contrib/mtn2git/mtn2git.py: Remove all old code that tried to figure out ↵Holger Freyther1
what changes happened Make place for the new code that is diffing the manifest directly. This avoids all the funky mess with recursive directory renames and undoing what mtn told us happened. git is clever enough to figure out moves and copying of files on its own.
2008-01-08contrib/mtn2git: Start with only using the manifestsHolger Freyther1
2008-01-08merge of '37149b3d7b17d35e06e93ecd95c7eb36f4425da6'Rolf Leggewie2
and '562c973381fd0816ab9bc3ab53a276a6c274c8b2'
2008-01-07openembedded-essential: add gfortran to dependencies to go along with ↵Rolf Leggewie7
a5c7b007eaa675cc904f5285291d2f8a597efc84
2008-01-07contrib/mtn2git: Ignore unknown certs, try to be more robust against CTRL-C ↵Holger Freyther2
when saving the status
2008-01-04angstrom autobuilder: also build uclibc imagesKoen Kooi1
2008-01-03contrib/feed-browser/update.php: Allow to update individual feeds.Paul Sokolovsky1
2008-01-03contrib/feed-browser: Capure current config.inc from Angstrom site.Paul Sokolovsky1
2007-12-27angstrom build-feed: add more packages and ppc405 machineKoen Kooi1
2007-12-25contrib/deploy/nfs/: Tools to deploy OE images for NFS boot.Paul Sokolovsky3
* Provides best practices for exports locations and sample of exports file. (The same location is used by default by initramfs-uniboot). * Tool to deploy tar.bz2/tar.gz/cpio.gz images to exported location.