export CC="/usr/bin/arm-none-eabi-gcc"
export CXX="/usr/bin/arm-none-eabi-g++"
export AS="/usr/bin/arm-none-eabi-as"
export LD="/usr/bin/arm-none-eabi-ld"
export AR="/usr/bin/arm-none-eabi-ar"
export NM="/usr/bin/arm-none-eabi-nm"
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 bash | |
declare -A COLOR | |
COLOR['END']='\033[0m' | |
COLOR['RED']='\033[0;31m' | |
if [ "$#" -ne 1 ]; then | |
echo -e "${COLOR['RED']}[ERROR] You must provide one and only one argument:${COLOR['END']}" >&2 | |
echo -e "${COLOR['RED']}1. The path to the job.yaml file\n${COLOR['END']}" >&2 | |
exit 1 |
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 bash | |
set -e | |
gpiodetect > /dev/null 2>&1 | |
if [ $? -ne 0 ]; then | |
echo "Debian package gpiod not installed..." | |
apt-get update | |
apt-get install gpiod | |
fi |
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 bash | |
declare -A COLOR | |
COLOR['END']='\033[0m' | |
COLOR['RED']='\033[0;31m' | |
COLOR['GREEN']='\033[0;32m' | |
COLOR['YELLOW']='\033[0;33m' | |
COLOR['BLUE']='\033[0;34m' | |
COLOR['WHITE']='\033[0;37m' |
-
On the section
Driver & Utility
download the most recent version -
Unzip it, rename from:
TUF-GAMING-X670E-PLUS-ASUS-XXXX.CAP
toTX670EPL.CAP
-
Format a USB stick to FAT and copy the
TX670EPL.CAP
to it -
Put the USB stick into USB port intended for BIOS update
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
# Compiler and flags | |
CC = gcc | |
CFLAGS = -Wall -Wno-nonnull -Wextra -Wno-sign-compare | |
# Target names | |
TARGET = qos | |
SRCS = main.c | |
OBJS = $(SRCS:.c=.o) | |
# Default target |
OlderNewer