This file contains 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
38c38 | |
< { 8, 7}, { 21, 7}, { 34, 7}, { 47, 7}, { 60, 7}, { 73, 7}, { 86, 7}, { 99, 7}, { 112, 7}, { 125, 7}, { 138, 7}, { 151, 7}, { 164, 7}, { 177, 7}, { 190, 7}, { 203, 7}, { 216, 7}, | |
--- | |
> { 8, 7}, { 21, 7}, { 34, 7}, { 47, 7}, { 60, 7}, { 73, 7}, { 86, 7}, { 99, 7}, { 112, 7}, { 125, 7}, { 138, 7}, { 151, 7}, { 164, 7}, { 177, 7}, { 190, 7}, { 203, 7}, { 216, 7}, | |
68c68 | |
< Usb_Suspend_Sig = false; | |
--- | |
> //Usb_Suspend_Sig = false; | |
72c72 | |
< Usb_Suspend_Sig = true; |
This file contains 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
#!/bin/sh | |
set -ex | |
PATH=/bin:/sbin:/usr/bin:/usr/sbin | |
KEYMAP="us us" | |
USER="***USER***" | |
ROOT_PASSWORD="***CHANGEME***" | |
USER_PASSWORD="***CHANGEME***" | |
HOST=alpine |
This file contains 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
cmake \ | |
-DCMAKE_C_COMPILER=gcc \ | |
-DCMAKE_CXX_COMPILER=g++ \ | |
-DCMAKE_EXE_LINKER_FLAGS="-static -lsupc++" \ | |
-DLIBCXXABI_LIBCXX_PATH=~/Development/llvm-project-llvmorg-8.0.0/libcxx \ | |
-DLIBCXXABI_LIBCXX_INCLUDES=~/Development/llvm-project-llvmorg-8.0.0/libcxx/include \ | |
-DLIBCXXABI_ENABLE_STATIC_UNWINDER=ON \ | |
-DLIBCXXABI_USE_LLVM_UNWINDER=ON \ | |
-DLIBCXX_LIBCXXABI_INCLUDES_INTERNAL=~/Development/llvm-project-llvmorg-8.0.0/libcxxabi/include \ | |
-DLIBCXX_HAS_MUSL_LIBC=ON \ |
This file contains 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
cmake -DCMAKE_EXE_LINKER_FLAGS="-static" -DCMAKE_FIND_LIBRARY_SUFFIXES=".a" .. |
This file contains 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
# This simple script is setting up a Alpine Linux installation in a chroot. | |
# chroot will be placed in the current working directory. | |
# | |
# Most parts of this script are written down at | |
# http://wiki.alpinelinux.org/wiki/Setting_up_the_build_environment_in_chroot | |
# | |
# Licensed under GPLv2 | |
# | |
# Copyright (c) 2011-2019 Fabian Affolter <fabian at affolter-engineering.ch> |