- Follow https://libcamera.org/getting-started.html to install libcamera on your native machine.
- Clone latest media_tree using:
git clone git://linuxtv.org/media_tree.git
- Install virtme:
pip3 install --user git+https://github.com/ezequielgarcia/virtme.git
- Compile Kernel with Virtme:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# https://github.com/bitcoin/bips/blob/master/bip-0039/english.txt | |
with open('/tmp/english.txt', 'r') as f: | |
bips = f.readlines() | |
short_bips = [] | |
# 442 unique words (all 4-character words) | |
for n in range(2048): |
OlderNewer