[PR #234] [MERGED] [recovery] Recovery Improvements #328

Closed
opened 2026-05-06 13:16:51 +02:00 by BreizhHardware · 0 comments

📋 Pull Request Information

Original PR: https://github.com/UpsilonNumworks/Upsilon/pull/234
Author: @devdl11
Created: 5/19/2022
Status: Merged
Merged: 12/29/2024
Merged by: @Yaya-Cout

Base: upsilon-devHead: upsilon-dev-1.0.1.01fix


📝 Commits (10+)

📊 Changes

21 files changed (+273 additions, -18 deletions)

View changed files

📝 bootloader/Makefile (+1 -0)
📝 bootloader/boot.cpp (+1 -1)
📝 bootloader/boot.h (+1 -1)
bootloader/interface/menus/upsilon_recovery.cpp (+48 -0)
bootloader/interface/menus/upsilon_recovery.h (+15 -0)
📝 bootloader/interface/static/messages.h (+9 -0)
📝 bootloader/recovery.cpp (+11 -1)
📝 bootloader/slots/slot.cpp (+14 -0)
📝 bootloader/slots/slot.h (+2 -0)
📝 bootloader/slots/userland_header.cpp (+12 -0)
📝 bootloader/slots/userland_header.h (+9 -0)
📝 ion/src/device/bootloader/boot/rt0.cpp (+45 -0)
📝 ion/src/device/bootloader/bootloader_common.ld (+27 -2)
📝 ion/src/device/bootloader/internal_flash.ld (+11 -1)
📝 ion/src/device/bootloader/platform_info.cpp (+13 -1)
📝 ion/src/device/shared/boot/isr.h (+1 -0)
📝 ion/src/device/shared/drivers/Makefile (+1 -0)
ion/src/device/shared/drivers/bldata.cpp (+21 -0)
ion/src/device/shared/drivers/bldata.h (+24 -0)
📝 ion/src/shared/internal_storage.cpp (+6 -10)

...and 1 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/UpsilonNumworks/Upsilon/pull/234 **Author:** [@devdl11](https://github.com/devdl11) **Created:** 5/19/2022 **Status:** ✅ Merged **Merged:** 12/29/2024 **Merged by:** [@Yaya-Cout](https://github.com/Yaya-Cout) **Base:** `upsilon-dev` ← **Head:** `upsilon-dev-1.0.1.01fix` --- ### 📝 Commits (10+) - [`3e42d48`](https://github.com/UpsilonNumworks/Upsilon/commit/3e42d4847ac66199ed2b17be838a3668af0125d4) Revert "[storage] Possibility to store metadata with records (cursor in scripts)" - [`a01f4bc`](https://github.com/UpsilonNumworks/Upsilon/commit/a01f4bcf1a9da87eff19c302541c4b5c1abd3aa5) Update config.mak (#230) - [`833bc4a`](https://github.com/UpsilonNumworks/Upsilon/commit/833bc4a120f4531e868385057514579758bfed44) [bootloader/menu] Fix typo (#231) - [`8e543f3`](https://github.com/UpsilonNumworks/Upsilon/commit/8e543f30c9f9c93cc37451df3399d123a5cd25df) Magical Backup - [`ab8b353`](https://github.com/UpsilonNumworks/Upsilon/commit/ab8b353c9c523a0f74ca20153f56f24ce6b4f525) Change Upsilon version from 1.0.0 to 1.0.1-dev - [`3eaa116`](https://github.com/UpsilonNumworks/Upsilon/commit/3eaa116ec619c7aba533c2587fc72d6b4d51db8f) Merge branch 'upsilon-dev' of https://github.com/UpsilonNumworks/Upsilon into upsilon-dev-v1.0.1.01fix_bis - [`48587c1`](https://github.com/UpsilonNumworks/Upsilon/commit/48587c15d7962b8ad0797693b95e25d7b785bb8e) Review - [`363ffbc`](https://github.com/UpsilonNumworks/Upsilon/commit/363ffbcaf8024c89b61cdfdc963023f4bed6d642) Removing debug led - [`1e0fa89`](https://github.com/UpsilonNumworks/Upsilon/commit/1e0fa89efe3a1c29e25d7243ffd112f3b4175c12) Update bootloader/interface/menus/upsilon_recovery.cpp - [`cbec2e5`](https://github.com/UpsilonNumworks/Upsilon/commit/cbec2e5883f664229fd120836c4740143c22a3f6) Update bootloader/interface/menus/upsilon_recovery.h ### 📊 Changes **21 files changed** (+273 additions, -18 deletions) <details> <summary>View changed files</summary> 📝 `bootloader/Makefile` (+1 -0) 📝 `bootloader/boot.cpp` (+1 -1) 📝 `bootloader/boot.h` (+1 -1) ➕ `bootloader/interface/menus/upsilon_recovery.cpp` (+48 -0) ➕ `bootloader/interface/menus/upsilon_recovery.h` (+15 -0) 📝 `bootloader/interface/static/messages.h` (+9 -0) 📝 `bootloader/recovery.cpp` (+11 -1) 📝 `bootloader/slots/slot.cpp` (+14 -0) 📝 `bootloader/slots/slot.h` (+2 -0) 📝 `bootloader/slots/userland_header.cpp` (+12 -0) 📝 `bootloader/slots/userland_header.h` (+9 -0) 📝 `ion/src/device/bootloader/boot/rt0.cpp` (+45 -0) 📝 `ion/src/device/bootloader/bootloader_common.ld` (+27 -2) 📝 `ion/src/device/bootloader/internal_flash.ld` (+11 -1) 📝 `ion/src/device/bootloader/platform_info.cpp` (+13 -1) 📝 `ion/src/device/shared/boot/isr.h` (+1 -0) 📝 `ion/src/device/shared/drivers/Makefile` (+1 -0) ➕ `ion/src/device/shared/drivers/bldata.cpp` (+21 -0) ➕ `ion/src/device/shared/drivers/bldata.h` (+24 -0) 📝 `ion/src/shared/internal_storage.cpp` (+6 -10) _...and 1 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
BreizhHardware 2026-05-06 13:16:51 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Upsilon#328
No description provided.