Skip to content

Commit

Permalink
Remove SPSR patches from CapDL branch
Browse files Browse the repository at this point in the history
Signed-off-by: Nick Spinale <nick@nickspinale.com>
  • Loading branch information
nspin committed Feb 14, 2024
1 parent 1f12879 commit 5acc001
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion crates/sel4-capdl-initializer/core/src/arch/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ mod imp {
) {
*regs.pc_mut() = extra.ip;
*regs.sp_mut() = extra.sp;
*regs.spsr_mut() = extra.spsr;
for (i, value) in extra.gprs.iter().enumerate() {
*regs.gpr_mut(i.try_into().unwrap()) = *value;
}
Expand Down
1 change: 0 additions & 1 deletion crates/sel4-capdl-initializer/types/src/spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ pub mod object {

pub ip: Word,
pub sp: Word,
pub spsr: Word,
pub gprs: Indirect<'a, [Word]>,

pub master_fault_ep: Option<CPtr>,
Expand Down
2 changes: 1 addition & 1 deletion hacking/nix/scope/sources.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ let

capdlCommon = {
url = "https://github.com/coliasgroup/capdl.git";
rev = "8274a1ec7424adc1a3e490a7e1acb114ba5159d0"; # branch coliasgroup
rev = "1bd2aa7596ba418be33f314f880682e4fb8ef679"; # branch coliasgroup
local = localRoot + "/capdl";
};

Expand Down

0 comments on commit 5acc001

Please sign in to comment.