Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dynamic Userland Application Loading #3941

Open
wants to merge 32 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
b3749c4
rebased dynamic apploader
viswajith-g Mar 28, 2024
a331d70
fixed warnings
viswajith-g Mar 28, 2024
e4073f1
fixed some format issues
viswajith-g Mar 28, 2024
b575bec
clippy fixes
viswajith-g Mar 28, 2024
12d6e60
fixed header check issue
viswajith-g Mar 28, 2024
aa51671
resolved some pr comments
viswajith-g Mar 29, 2024
2b54b13
pr comments changes
viswajith-g Mar 31, 2024
8181efc
Improved State Machine
viswajith-g Apr 1, 2024
32b288b
Improved State Machine
viswajith-g Apr 1, 2024
05f4207
Header validation + Erasing app upon failure
viswajith-g Apr 1, 2024
a2156ed
bug fixes
viswajith-g Apr 1, 2024
8c9e836
states bug fix
viswajith-g Apr 2, 2024
8ae8bcc
fixed alignment and padding
viswajith-g Apr 6, 2024
4680d80
remove extraneous function call
viswajith-g Apr 6, 2024
e67b478
alignment improvement
viswajith-g Apr 7, 2024
c7fe16b
Better flow and documentation
viswajith-g May 9, 2024
55e4aeb
Metadata Struct, changes to reclaiming flash on fail.
viswajith-g Jun 20, 2024
9c23945
cleaned metadata variable storage and setup done upcall invocation
viswajith-g Jun 23, 2024
ed20b85
Merge branch 'master' into master
viswajith-g Jun 23, 2024
a91cb6d
Async Process Loading
viswajith-g Jun 27, 2024
bcc1f2e
Clean up
viswajith-g Jul 3, 2024
8e148fd
additional cleanup
viswajith-g Jul 4, 2024
204b582
address CI failure
viswajith-g Jul 4, 2024
ccccc3d
removed unneeded file
viswajith-g Jul 4, 2024
e03e84d
Better explain how write works
viswajith-g Jul 4, 2024
ad6ae27
kernel: dpl: comments and simplify
bradjc Jul 10, 2024
ad85b09
kernel: dpl: simplify find_next_available_address
bradjc Jul 10, 2024
3421809
fix new app address compute
viswajith-g Jan 29, 2025
797f3e2
moved setup minus writing padding to process_loading.rs
viswajith-g Jan 31, 2025
968ab04
Merge branch 'master' of https://github.com/tock/tock
viswajith-g Feb 1, 2025
99423b0
Moved more flash access from DPL to ProcessLoadingAsync
viswajith-g Feb 1, 2025
c60c1a2
Split the DPL trait into DynamicBinaryFlashing and DynamicProcessLoa…
viswajith-g Feb 1, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed header check issue
  • Loading branch information
viswajith-g committed Mar 28, 2024
commit 12d6e60c3537a77f4606ee4d6dcf49b26c27b3dc
5 changes: 4 additions & 1 deletion boards/components/src/dyn_process_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
// SPDX-License-Identifier: Apache-2.0 OR MIT
// Copyright Tock Contributors 2022.

//! Component for non-volatile storage Drivers.
//! Component for dynamic process loading.
//!
//! This provides one component, ProcessLoaderComponent, which provides
//! a system call interface to DynamicProcessLoader.
//!
//!```rust
//! # use kernel::static_init;
//!
//! let dynamic_process_loader = components::dyn_process_loader::ProcessLoaderComponent::new(
//! &mut PROCESSES,
//! board_kernel,
Expand Down
Loading