GitPhraseBook: Difference between revisions
Jump to navigation
Jump to search
Thebohemian (talk | contribs) (typos) |
No edit summary |
||
Line 1: | Line 1: | ||
= | = Adding missing Checksums = | ||
* go to TMPDIR and locate the checksums.ini there | |||
* combine the checksums.ini from OE and yours: | |||
cat TMPDIR/checksums.ini >> OE/org.openembedded.dev/conf/checksums.ini | |||
* sort the result and apply it to OE | |||
cd /OE/org.openembedded.dev/conf/ | |||
python ../contrib/source-checker/oe-checksums-sorter.py checksums.ini >tmp | |||
mv tmp checksums.ini | |||
* inspect the results: | |||
git diff checksums.ini | |||
The diff should only contain additions (removals and replacements are a sign of corruption somewhere). | |||
[[Category:Dev]] | [[Category:Dev]] | ||
[[Category:User]] | [[Category:User]] |
Revision as of 22:34, 15 October 2008
Adding missing Checksums
- go to TMPDIR and locate the checksums.ini there
- combine the checksums.ini from OE and yours:
cat TMPDIR/checksums.ini >> OE/org.openembedded.dev/conf/checksums.ini
- sort the result and apply it to OE
cd /OE/org.openembedded.dev/conf/ python ../contrib/source-checker/oe-checksums-sorter.py checksums.ini >tmp mv tmp checksums.ini
- inspect the results:
git diff checksums.ini
The diff should only contain additions (removals and replacements are a sign of corruption somewhere).