Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
22 lines
417 B
Python
22 lines
417 B
Python
#! /usr/bin/env python3
|
|
#
|
|
# SPDX-License-Identifier: MIT
|
|
#
|
|
# Copyright 2019 by Garmin Ltd. or its subsidiaries
|
|
#
|
|
# A script to reformat python sysconfig
|
|
|
|
import sys
|
|
import pprint
|
|
l = {}
|
|
g = {}
|
|
with open(sys.argv[1], 'r') as f:
|
|
exec(f.read(), g, l)
|
|
|
|
with open(sys.argv[1], 'w') as f:
|
|
for k in sorted(l.keys()):
|
|
f.write('%s = ' % k)
|
|
pprint.pprint(l[k], stream=f, width=1)
|
|
f.write('\n')
|
|
|