From 07e758e47b1a272f1f8a063220b54e9c5eb9e410 Mon Sep 17 00:00:00 2001 From: "dominik.m.weber" Date: Sun, 1 Dec 2024 17:31:54 +0100 Subject: [PATCH 1/2] nix: add rustup+target to nix config --- shell.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shell.nix b/shell.nix index 7039450..a3ecfd9 100644 --- a/shell.nix +++ b/shell.nix @@ -2,6 +2,7 @@ with import { }; mkShell { nativeBuildInputs = [ + rustup direnv gcc-arm-embedded cmake @@ -54,5 +55,6 @@ mkShell { cd .. fi export PATH=$(pwd)/qemu/build:$PATH + rustup target add thumbv7em-none-eabi ''; } From e1abffb4cd6e430e03d494daee9e8c25a9819ba9 Mon Sep 17 00:00:00 2001 From: "dominik.m.weber" Date: Sun, 1 Dec 2024 17:33:04 +0100 Subject: [PATCH 2/2] git: change submodule link to use ssh --- .gitmodules | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitmodules b/.gitmodules index 9191108..63c4d60 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,6 @@ [submodule "hal/stm32l4"] path = hal/stm32l4 - url = https://github.com/OsirisRTOS/stm32l4-hal.git + url = git@github.com:OsirisRTOS/stm32l4-hal.git [submodule "kernel"] path = kernel - url = https://github.com/OsirisRTOS/kernel.git + url = git@github.com:OsirisRTOS/kernel.git