git clone https://github.com/YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream https://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
| #!/bin/bash | |
| if [ "$1" = "" ]; then | |
| echo "$0: please specify $0 (kernelv) (optional kernel-config)" | |
| echo "e.g. $0 4.18.5 or $0 4.18.5 u3_docker_config" | |
| else | |
| CONF="compile-kernel.config" | |
| #source config | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" | |
| . $DIR/$CONF | |
| if [ "$1" != "" ]; then KERNELV="$1"; fi |
| #!/bin/bash | |
| if [ "$1" = "" ]; then | |
| echo "$0: please specify $0 (kernelv) (optional kernel-config)" | |
| echo "e.g. $0 4.18.5 or $0 4.18.5 u3_docker_config" | |
| else | |
| CONF="compile-kernel.config" | |
| #source config | |
| DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null && pwd )" | |
| . $DIR/$CONF | |
| if [ "$1" != "" ]; then KERNELV="$1"; fi |
| KERNELV="4.18.5" | |
| KERNEL_CONFIG="/media/boot/u3_docker_config" | |
| BOARD_DRIVER="exynos4412-odroidu3" | |
| TARGETD="/media/boot/" | |
| SRCD=`echo ~` | |
| #!/bin/bash | |
| if [ "$1" = "" ]; then | |
| echo "$0: please specify $0 (kernelv) (optional kernel-config)" | |
| echo "e.g. $0 4.18.5 or $0 4.18.5 u3_docker_config" | |
| else | |
| KERNELV="$1" | |
| KERNEL_CONFIG="/media/boot/u3_docker_config" | |
| BOARD_DRIVER="exynos4412-odroidu3" | |
| TARGETD="/media/boot/" |
| #!/bin/bash | |
| if [ "$1" = "" ]; then | |
| echo "$0: please specify $0 (kernelv) (optional kernel-config)" | |
| echo "e.g. $0 4.18.5 or $0 4.18.5 u3_docker_config" | |
| else | |
| KERNELV="$1" | |
| KERNEL_CONFIG="u3_docker_config" | |
| BOARD_DRIVER="exynos4412-odroidu3" | |
| TARGETD="/media/boot/" |
| #!/bin/bash | |
| if [ "$1" = "" ]; then | |
| echo "$0: please specify $0 (kernelv) (optional kernel-config)" | |
| echo "e.g. $0 4.18.5 or $0 4.18.5 u3_docker_config" | |
| else | |
| KERNELV="$1" | |
| KERNEL_CONFIG="u3_docker_config" | |
| BOARD_DRIVER="exynos4412-odroidu3" | |
| TARGETD="/media/boot/" |
| # Ubuntu16.04 with kernel 4.16 - https://forum.odroid.com/viewtopic.php?f=77&t=30654 | |
| # win32 disk imager, burn "ubuntu-odroidu3-4.16" to sd card, gives you kernel4.16 | |
| login root/odroid | |
| #attempt to fix network problems after upgrade (random mac address on reboot) | |
| nano /etc/netplan/01-netcfg.yaml | |
| network: | |
| version: 2 | |
| renderer: networkd | |
| ethernets: |
| loadkeys se | |
| #fix issues with ports.ubuntu.com not resolving | |
| echo "nameserver 8.8.8.8" | sudo tee /etc/resolv.conf > /dev/null | |
| sudo apt-get install update-manager-core | |
| sudo do-release-upgrade | |
| #fix broken package state after upgrade | |
| sudo apt install python3-aptdaemon | |
| #then do further upgrades |
| //remove warnings for any object in a readable way that does not affect generated js. | |
| ($("div.printArea") as any).printArea(); |
git clone https://github.com/YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream https://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream