- Toshiba Satellite A210-15Y
- MSI M670
- TUXEDO BU1406 (Clevo N240BU, HM170 / Sunrise Point / Kaby Lake-U)
- XMG C404 (Gigabyte P34V2, Lynx Point / Haswell)
- T-bao Tbook Pro (C116C Rev21 / Z8350, like Hometech h14x or Digimate DGM L-141QH)
# Copyright 2019 Gentoo Authors | |
# Distributed under the terms of the GNU General Public License v2 | |
EAPI=7 | |
EGO_VENDOR=( | |
"github.com/go-xorm/builder 1d658d7596c25394aab557ef5b50ef35bf706384" | |
"github.com/go-xorm/core ccc80c1" | |
"github.com/go-xorm/xorm 1f39c59" | |
"github.com/gorilla/context 08b5f42" |
# Porting coreboot to a Haswell / Lynx Point laptop: GIGABYTE P34V2 | |
## autoport | |
### patch coreboot repo for LynxPoint support in autoport | |
https://review.coreboot.org/c/coreboot/+/30890 | |
`git fetch https://review.coreboot.org/coreboot refs/changes/90/30890/2 && git cherry-pick FETCH_HEAD` | |
https://review.coreboot.org/c/coreboot/+/31759 | |
`git fetch https://review.coreboot.org/coreboot refs/changes/59/31759/2 && git cherry-pick FETCH_HEAD` |
#!/bin/bash | |
## see https://lebkowski.name/docker-volumes/ | |
# remove exited containers: | |
docker ps --filter status=dead --filter status=exited -aq | xargs -r docker rm -v | |
# remove unused images: | |
docker images --no-trunc | grep '<none>' | awk '{ print $3 }' | xargs -r docker rmi |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 12, | |
// font family with optional fallbacks |
#!/bin/bash | |
# Preconditions: | |
# Before using this script, you need to have additional tools. Preferably, use | |
# your system package manager to install `csv2json`, `jsonlint` and `xslx2csv`. | |
# Alternatively, if you have `node`, `npm`, `python` and `pip`, run | |
# `npm i -g csv2json jsonlint && pip install xlsx2csv` for the unclean way. | |
# WARNING: You may have to adjust your `$PATH` then and you will need to track | |
# updates yourself. Do this at your own risk only. |
#!/bin/bash | |
sed -i "s/^CONFIG_LOCALVERSION=.*/CONFIG_LOCALVERSION=\"$(git branch | grep "*" | cut -b 3-)\"/" .config |
#!/usr/bin/bash | |
_KEY=$1 | |
curl "https://keyserver.opensuse.org/pks/lookup?op=get&search=0x$_KEY" | tail -n +13 | head -n -2 > "/tmp/$_KEY.asc" | |
gpg --import "/tmp/$_KEY.asc" | |
rm "/tmp/$_KEY.asc" |