From 32f3b1d76b445321f36c8651b2de714cbd38b641 Mon Sep 17 00:00:00 2001 From: Steven Boger Date: Fri, 22 Apr 2022 16:04:08 -0700 Subject: [PATCH 1/3] lock kernel build version to 5.10.60 --- Code/patch/armbian_build_a06/patch/lib.config | 1 + 1 file changed, 1 insertion(+) create mode 100644 Code/patch/armbian_build_a06/patch/lib.config diff --git a/Code/patch/armbian_build_a06/patch/lib.config b/Code/patch/armbian_build_a06/patch/lib.config new file mode 100644 index 0000000..dbed625 --- /dev/null +++ b/Code/patch/armbian_build_a06/patch/lib.config @@ -0,0 +1 @@ +KERNELBRANCH='tag:v5.10.60' From 9321b1669e72d3eee07365e9cd22cc48b4be1abe Mon Sep 17 00:00:00 2001 From: Steven Boger Date: Fri, 22 Apr 2022 16:13:21 -0700 Subject: [PATCH 2/3] Update README --- Code/patch/armbian_build_a06/patch/README | 24 ++++++++++++++++------- 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/Code/patch/armbian_build_a06/patch/README b/Code/patch/armbian_build_a06/patch/README index 4b4dce1..ec51a0a 100644 --- a/Code/patch/armbian_build_a06/patch/README +++ b/Code/patch/armbian_build_a06/patch/README @@ -1,4 +1,6 @@ cd ~ +mkdir devterm-build + git clone https://github.com/armbian/build.git git clone https://github.com/clockworkpi/DevTerm.git @@ -6,14 +8,22 @@ cd build git reset --hard 43d179914ae9e1ebb5d72315d9f9f68f5fb3e330 -git apply ~/DevTerm/Code/patch/armbian_build_a06/patch/armbian.patch -git apply ~/DevTerm/Code/patch/armbian_build_a06/patch/armbian_mirror.patch +git apply ../DevTerm/Code/patch/armbian_build_a06/patch/armbian.patch +git apply ../DevTerm/Code/patch/armbian_build_a06/patch/armbian_mirror.patch -cp ~/DevTerm/Code/patch/armbian_build_a06/patch/kernel*.patch userpatches/kernel/rockchip64-current/ -cp ~/DevTerm/Code/patch/armbian_build_a06/patch/uboot*.patch userpatches/u-boot/u-boot-rockchip64-mainline/ +mkdir -p userpatches/kernel/rockchip64-current/lib.config +mkdir -p userpatches/u-boot/u-boot-rockchip64-mainline/ -cp ~/DevTerm/Code/patch/armbian_build_a06/patch/config-example.conf userpatches/ +cp -f ../DevTerm/Code/patch/armbian_build_a06/patch/kernel*.patch userpatches/kernel/rockchip64-current/ +cp -f ../DevTerm/Code/patch/armbian_build_a06/patch/uboot*.patch userpatches/u-boot/u-boot-rockchip64-mainline/ +cp -f ../DevTerm/Code/patch/armbian_build_a06/patch/lib.config userpatches/ +cp -f ../DevTerm/Code/patch/armbian_build_a06/patch/clockworkpi-a06.conf config/boards/ + + +# Compile on a compatible ubuntu linux system: +./compile.sh BOARD=clockworkpi-a06 BRANCH=current RELEASE=hirsute BUILD_MINIMAL=no BUILD_DESKTOP=yes KERNEL_ONLY=no KERNEL_CONFIGURE=no DESKTOP_ENVIRONMENT=xfce DESKTOP_ENVIRONMENT_CONFIG_NAME=config_base COMPRESS_OUTPUTIMAGE=sha,gpg,img + +# Compile on any system that user has docker commandline access. +./compile.sh docker BOARD=clockworkpi-a06 BRANCH=current RELEASE=hirsute BUILD_MINIMAL=no BUILD_DESKTOP=yes KERNEL_ONLY=no KERNEL_CONFIGURE=no DESKTOP_ENVIRONMENT=xfce DESKTOP_ENVIRONMENT_CONFIG_NAME=config_base COMPRESS_OUTPUTIMAGE=sha,gpg,img -#Then exec ./compile.sh under armbian build -cd ~/build && ./compile.sh From f1ea33fbf6d382f66d2eed46e773e5ed38c29625 Mon Sep 17 00:00:00 2001 From: Steven Boger Date: Fri, 22 Apr 2022 16:15:35 -0700 Subject: [PATCH 3/3] Update README --- Code/patch/armbian_build_a06/patch/README | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Code/patch/armbian_build_a06/patch/README b/Code/patch/armbian_build_a06/patch/README index ec51a0a..6b073d4 100644 --- a/Code/patch/armbian_build_a06/patch/README +++ b/Code/patch/armbian_build_a06/patch/README @@ -1,5 +1,5 @@ -cd ~ mkdir devterm-build +cd devterm-build git clone https://github.com/armbian/build.git git clone https://github.com/clockworkpi/DevTerm.git