Forward GNUPG agent with the following steps:
Run gpg once to create the directory structure.
gpg --list-keys
| #!/usr/bin/env python3 | |
| # -*- coding: UTF-8 -*- | |
| # vim: ts=4 sw=4 et ai si | |
| from __future__ import print_function | |
| import random | |
| import sys | |
| def handle(event, state, bit): |
| #!/usr/bin/python3 -tt | |
| # -*- coding: UTF-8 -*- | |
| # vim: ts=4 sw=4 et ai si | |
| # | |
| # SPDX-License-Identifier: GPL-2.0-or-later | |
| # | |
| import argparse | |
| import dateutil.parser | |
| import errno |
| version.h | |
| module | |
| *.o |
| Test Fat32 image |
| The below list of tasks for Linux kernel is in completely arbitrary order by | |
| complexness, tree wideness, etc. | |
| 1. GCC warning: dubious: x | !y: `git grep -n ' | !'` | |
| 2. Check for possibility to use %*ph: `git grep -n -i '%02x[ :-]%02x[ :-]%02x'` | |
| 3. Any of custom code that implements already provided extensions described in printk-formats.rst | |
| 4. driver_override_store() unification (manipulation with strings) | |
| 5. Run `codespell` across drivers and subsystems | |
| 6. Fix ioremap(..., 0) [size = 0] across architectures, now some return NULL, some return address, some may even have leaks | |
| 7. Common helper to search for magic inside BIOS region: `git grep -n -i ' = .*0xf0000[^0-9a-f]'` |
| #!/usr/bin/python -tt | |
| # -*- coding: UTF-8 -*- | |
| # vim: ts=4 sw=4 et ai si | |
| from __future__ import print_function | |
| import sys | |
| import os | |
| import itertools |
| #!/usr/bin/python -tt | |
| # -*- coding: UTF-8 -*- | |
| # vim: ts=4 sw=4 et ai si | |
| from __future__ import print_function | |
| import sys | |
| import os | |
| import math |
| #!/bin/sh -efu | |
| # | |
| # Binary search tree is of the form: | |
| # 10 | |
| # / \ | |
| # / \ | |
| # 4 16 | |
| # / \ / | |
| # 1 7 12 | |
| # |
| #!/bin/sh | |
| # | |
| # Required: xz, crc32, xxd, xfst-dldr-solo, dfu-util | |
| # | |
| # Version for stable edison-v2016.11 and edison-v2017.01 | |
| #dd if=u-boot.bin of=u-boot-4k.bin bs=4k seek=1 && truncate -s %4096 u-boot-4k.bin | |
| # OSIP header (0x000000) |