Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

readme: converted to md and fixed typo #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,6 @@ lib/toaster/contrib/tts/backlog.txt
lib/toaster/contrib/tts/log/*
lib/toaster/contrib/tts/.cache/*
lib/bb/tests/runqueue-tests/bitbake-cookerdaemon.log

# pycharm
.idea/
15 changes: 7 additions & 8 deletions README → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,11 @@ Bitbake plain documentation can be found under the doc directory or its integrat
html version at the Yocto Project website:
https://docs.yoctoproject.org

Contributing
------------
## Contributing

Please refer to
https://www.openembedded.org/wiki/How_to_submit_a_patch_to_OpenEmbedded
for guidelines on how to submit patches, just note that the latter documentation is intended
for guidelines on how to submit patches. Note that the latter documentation is intended
for OpenEmbedded (and its core) not bitbake patches ([email protected])
but in general main guidelines apply. Once the commit(s) have been created, the way to send
the patch is through git-send-email. For example, to send the last commit (HEAD) on current
Expand All @@ -31,18 +30,18 @@ the Yocto Project documentation mailing list:

git send-email -M -1 --to [email protected] --cc [email protected]

Mailing list:
### Mailing list

https://lists.openembedded.org/g/bitbake-devel

Source code:
### Source code

https://git.openembedded.org/bitbake/

Testing:
## Testing

Bitbake has a testsuite located in lib/bb/tests/ whichs aim to try and prevent regressions.
You can run this with "bitbake-selftest". In particular the fetcher is well covered since
Bitbake has a testsuite located in `lib/bb/tests` which aims to try and prevent regressions.
You can run this with `bitbake-selftest`. In particular the fetcher is well covered since
it has so many corner cases. The datastore has many tests too. Testing with the testsuite is
recommended before submitting patches, particularly to the fetcher and datastore. We also
appreciate new test cases and may require them for more obscure issues.
2 changes: 1 addition & 1 deletion lib/pyinotify.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def __init__(self, version):
__version__ = "0.9.6"


# Compatibity mode: set to True to improve compatibility with
# Compatibility mode: set to True to improve compatibility with
# Pyinotify 0.7.1. Do not set this variable yourself, call the
# function compatibility_mode() instead.
COMPATIBILITY_MODE = False
Expand Down