summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Randhawa <robin.randhawa@arm.com>2021-01-15 12:18:26 +0000
committerJeremy Soller <jeremy@system76.com>2021-01-15 06:14:28 -0700
commit816895cf513b46f73f10b3d8f2a64c7a9dee24ac (patch)
treea33d1af5ea2b8bf163365436f251ecd2fb875f7d
parent63a1e86bca306db49e189cadab003c22f922c6d9 (diff)
mk/config.mk: AArch64: Make KTARGET aarch64-unknown-none
This was set to aarch64-unknown-redox intentionally because that was the only way to be able to use the kernel code-model. There's a way to work around that in the following patch and hence move back to aarch64-unknown-none as the KTARGET.
-rw-r--r--mk/config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/mk/config.mk b/mk/config.mk
index b6a31f8..00100dd 100644
--- a/mk/config.mk
+++ b/mk/config.mk
@@ -41,7 +41,7 @@ export RUST_TARGET_PATH=$(ROOT)/kernel/targets
export XARGO_RUST_SRC=$(ROOT)/rust/src
## Kernel variables
-KTARGET=$(ARCH)-unknown-redox
+KTARGET=$(ARCH)-unknown-none
KBUILD=build/kernel
## Userspace variables