dilithium, hybrid, ctap implementation, experiments
This commit is contained in:
@@ -7,7 +7,7 @@ index c78b1c9fb..2769d0138 100644
|
||||
// The 1.x Tock kernel allocates at least 3 kB to processes, and we need
|
||||
// to ensure that happens as userspace may expect it.
|
||||
- 3 * 1024
|
||||
+ 16 * 1024
|
||||
+ 70 * 1024
|
||||
|
||||
// TOCK 2.0
|
||||
//
|
||||
|
||||
13
patches/tock/10-kernel-stack.patch
Normal file
13
patches/tock/10-kernel-stack.patch
Normal file
@@ -0,0 +1,13 @@
|
||||
diff --git a/boards/nordic/nrf52840dk_opensk/src/main.rs b/boards/nordic/nrf52840dk_opensk/src/main.rs
|
||||
index 83fd0bbab..53d623b46 100644
|
||||
--- a/boards/nordic/nrf52840dk_opensk/src/main.rs
|
||||
+++ b/boards/nordic/nrf52840dk_opensk/src/main.rs
|
||||
@@ -147,7 +147,7 @@ static mut CHIP: Option<&'static nrf52840::chip::NRF52<Nrf52840DefaultPeripheral
|
||||
/// Dummy buffer that causes the linker to reserve enough space for the stack.
|
||||
#[no_mangle]
|
||||
#[link_section = ".stack_buffer"]
|
||||
-pub static mut STACK_MEMORY: [u8; 0x1000] = [0; 0x1000];
|
||||
+pub static mut STACK_MEMORY: [u8; 0x2000] = [0; 0x2000];
|
||||
|
||||
/// Supported drivers by the platform
|
||||
pub struct Platform {
|
||||
Reference in New Issue
Block a user