GitPhraseBook

From Openembedded.org
Revision as of 22:34, 15 October 2008 by 77.128.25.19 (talk)
Jump to: navigation, search

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).