Compare commits

...

6 commits

Author SHA1 Message Date
tomtomx3
7dd3a01989
Just for test purposes 2026-06-25 01:37:48 +02:00
8eb749f6f2 Build Script angepasst um arch derivate zu Unterstützen. 2026-06-24 22:31:20 +02:00
DefenderOfHyrule
71266314eb remove CLK check, apparently it's problematic for some specific/random consoles? 2026-04-19 11:05:57 +02:00
DefenderOfHyrule
c0f8d7c186
More proper implementation of my BCT resync fix and add CLK detection (#9)
* add CLK detection, apparently was never checked :P

* 2.82, more proper implementation of the BCT resync fix.

* 2.82 also contains a fingerprint (first few characters of BCT pubkey) that can be used with modchip toolbox 1.0.2.
2026-04-15 20:33:56 +02:00
DefenderOfHyrule
9e2544dbe3 revert some previous optimization changes, implement *proper* GRB to RGB conversion. these changes were on my mind for a while but they should fix error code display as well as have less jank error code indicators. rehius' usk was used as 'base' in this instance. 2026-03-31 07:15:36 +02:00
DefenderOfHyrule
9cce154f9c
2.81, the "fix OFW and misc bugs" update :P (#5)
* added retry wrapper, made sure SM2 was disabled and not left running

* (hopefully) permanently fix booting OFW. see changelog of 2.81 release for more information
2026-03-29 16:39:52 +02:00
11 changed files with 308 additions and 217 deletions

View file

@ -6,11 +6,17 @@
#include "glitch.h"
#include "misc.h"
#include "fuses.h"
#include "board_detect.h"
bool mariko = true;
bool board_detected = false;
// maximum number of retries for boot detection before giving up
#define BOOT_DETECT_MAX_RETRIES 4
bool wait_for_boot(int timeout_ms) {
// retry the entire boot detection sequence up to BOOT_DETECT_MAX_RETRIES times
for (int retry = 0; retry < BOOT_DETECT_MAX_RETRIES; retry++) {
absolute_time_t tio_full = make_timeout_time_ms(timeout_ms);
absolute_time_t tio_cmd1 = tio_full;
init_glitch_pio();
@ -25,7 +31,8 @@ bool wait_for_boot(int timeout_ms) {
{
if (reset_attempts > 4)
{
halt_with_error(0, 3);
// internal timeout, break and retry the whole sequence
break;
}
reset_attempts++;
reset_cpu();
@ -45,7 +52,9 @@ bool wait_for_boot(int timeout_ms) {
}
else if (last_word == 0x51000000 && word == 0x0055) //read block 0
{
tio_full = make_timeout_time_ms(100);
// OLED models sometimes need more time between block 0 and block 1
// original was 100ms, increased to 250ms for better OLED compatibility
tio_full = make_timeout_time_ms(250);
was_read_zero = true;
} else if (was_read_zero && last_word == 0x4D000200 && word == 0x00B1) // read status - erista only
{
@ -58,6 +67,22 @@ bool wait_for_boot(int timeout_ms) {
last_word = word;
}
}
// properly clean up all state machines before retrying
// SM 2 (G_DAT0_SM) must also be disabled (0x7 = 0b111 covers SM 0, 1, and 2)
pio_set_sm_mask_enabled(pio1, 0x7, false);
// clean up GPIO pins
for (int i = PIN_CLK; i <= PIN_DAT; i++)
{
gpio_deinit(i);
gpio_disable_pulls(i);
gpio_disable_input_output(i);
}
gpio_deinit(gli_pin());
// only halt with error if all retries are exhausted
if (retry == BOOT_DETECT_MAX_RETRIES - 1) {
if (was_read_zero) {
halt_with_error(1, 3);
}
@ -66,5 +91,11 @@ bool wait_for_boot(int timeout_ms) {
} else {
halt_with_error(3, 3);
}
}
// small delay before retrying to let hardware settle
sleep_ms(50);
}
return false;
}

View file

@ -1,10 +1,10 @@
#include "hardware/flash.h"
#define OFFSET_DIV 8
#define OFFSET_MIN 6200
#define OFFSET_MAX 6950
#define OFFSET_MAX 6900
#define VER_HI 2
#define VER_LO 80
#define VER_LO 82
bool is_configured();
void init_config();

View file

@ -65,7 +65,8 @@ void init_glitch_pio() {
}
void deinit_glitch_pio() {
pio_set_sm_mask_enabled(pio1, 0x3, false);
// SM 2 (G_DAT0_SM) is also used, so all 3 state machines need to be disabled (0x7 = 0b111)
pio_set_sm_mask_enabled(pio1, 0x7, false);
for (int i = PIN_CLK; i <= PIN_DAT; i++)
{
gpio_deinit(i);
@ -134,14 +135,14 @@ int do_glitch(int delay, int width, int total_ms, int after_ms) {
int tries = 0;
// Green pulsing implementation.
// Blue pulsing implementation.
void inc_tries()
{
tries += 1;
if(tries & 1)
put_pixel(PIX_g);
put_pixel(PIX_b);
else
put_pixel(PIX_gre);
put_pixel(PIX_blu);
}
// random() for glitch offset array generation

115
main.c
View file

@ -21,23 +21,24 @@
bool write_payload();
// optimized: increased voltage for better stability at higher clock
// overclock to 200 MHz
void init_system() {
vreg_set_voltage(VREG_VOLTAGE_1_30);
set_sys_clock_khz(200000, true);
}
// filled within "fast check" on eMMC init
extern uint8_t cid_buf[17];
void rewrite_payload()
{
put_pixel(PIX_whi);
write_payload();
put_pixel(PIX_gre);
put_pixel(PIX_blu);
// used to automatically rewrite payload when eMMC/console changes
init_config(cid_buf + 1);
}
// optimized: reduced timeout and combined checks
bool safe_test_voltage(int pin, float target, float range)
{
gpio_enable_input_output(pin);
@ -49,29 +50,35 @@ bool safe_test_voltage(int pin, float target, float range)
return voltage >= (target - range) && voltage <= (target + range);
}
// optimized: reduced timeout from 2500ms to 1500ms, faster convergence
// test all ADC pins
void self_test()
{
absolute_time_t tio_time = make_timeout_time_ms(1500);
absolute_time_t tio_time = make_timeout_time_ms(2500);
adc_init();
uint8_t check_mask = 0; // bit flags: 0=rst, 1=cmd, 2=d0
while (!time_reached(tio_time) && check_mask != 0x07) {
if (!(check_mask & 0x01))
check_mask |= safe_test_voltage(PIN_RST, 1.8f, 0.2f) ? 0x01 : 0;
if (!(check_mask & 0x02))
check_mask |= safe_test_voltage(PIN_CMD, 1.8f, 0.2f) ? 0x02 : 0;
if (!(check_mask & 0x04))
check_mask |= safe_test_voltage(PIN_DAT, 1.8f, 0.2f) ? 0x04 : 0;
bool rst_ok = false, cmd_ok = false, d0_ok = false;
while (!time_reached(tio_time)) {
if (!rst_ok)
rst_ok |= safe_test_voltage(PIN_RST, 1.8f, 0.2f);
if (!cmd_ok)
cmd_ok |= safe_test_voltage(PIN_CMD, 1.8f, 0.2f);
if (!d0_ok)
d0_ok |= safe_test_voltage(PIN_DAT, 1.8f, 0.2f);
if (rst_ok && cmd_ok && d0_ok)
break;
}
if(!(check_mask & 0x01))
if(!rst_ok)
{
halt_with_error(0, 2);
if(!(check_mask & 0x02))
}
if(!cmd_ok)
{
halt_with_error(1, 2);
if(!(check_mask & 0x04))
}
if(!d0_ok)
{
halt_with_error(2, 2);
}
}
extern bool was_self_reset;
@ -79,116 +86,77 @@ int main()
{
// stop watchdog
*(uint32_t*)(0x40058000 + 0x3000) = (1 << 30);
// init board detection
// init reset, mosfet and LED
detect_board();
// clocks & voltage
init_system();
// fuses counter
init_fuses();
// LED & glitch & emmc PIO
upload_pio();
if (is_tiny())
{
gpio_put(led_pin(), 0);
sleep_us(50); // optimized: reduced from 100us
sleep_us(100);
put_pixel(0);
sleep_us(50); // optimized: reduced from 100us
sleep_us(100);
}
// check if this is the very first start
if (watchdog_caused_reboot() && boot_try == 0)
{
halt_with_error(1, 1);
}
// is chip reset required
bool force_button = detect_by_pull(1, 0, 1);
// start LED
put_pixel(PIX_gre);
put_pixel(PIX_blu);
// test pins
self_test();
// wait till the CPU has proper power & started reading the eMMC
wait_for_boot(2490);
wait_for_boot(2500);
// ensure the BCT has not been overwritten by system update
bool force_check = fast_check();
was_self_reset = force_button || !is_configured(cid_buf + 1);
// perform payload rewrite if required
if (!force_check || was_self_reset) {
rewrite_payload();
}
// setup the glitch trigger for Mariko
if (mariko) {
pio1->instr_mem[gtrig_pio_offset + 4] = pio_encode_nop();
pio1->instr_mem[gtrig_pio_offset + 5] = pio_encode_nop();
}
// optimized: start with slightly lower width for faster convergence
int width = 140;
// start from some default width
int width = 150;
bool glitched = false;
int offset = 0;
// optimized: removed outer loop since it just repeats rewrite_payload
// try saved records first
for (int full_try = 0; full_try < 2; full_try++) {
// try saved records
for (int y = 0; (y < 2) && !glitched; y++) {
int max_weight = -1;
while (1) {
offset = find_best_record(&max_weight);
if (offset == -1)
break;
// optimized: reduced attempts from 3 to 2 for faster iteration
glitched = glitch_try_offset(offset, &width, 2);
// try glitch
glitched = glitch_try_offset(offset, &width, 3);
if (glitched)
break;
}
}
// try random offsets if saved records failed
if (!glitched) {
for(int z = 0; (z < 2) && !glitched; z++) {
prepare_random_array();
for(int y = 0; y < OFFSET_CNT; y++)
{
offset = offsets_array[y];
// optimized: reduced attempts from 4 to 3
glitched = glitch_try_offset(offset, &width, 3);
glitched = glitch_try_offset(offset, &width, 4);
if (glitched)
break;
}
}
}
// if still not glitched, try one more time with payload rewrite
if (!glitched) {
rewrite_payload();
// one more attempt with saved records
int max_weight = -1;
for (int y = 0; (y < 3) && !glitched; y++) {
offset = find_best_record(&max_weight);
if (offset == -1)
break;
glitched = glitch_try_offset(offset, &width, 2);
}
}
if (glitched) {
// ensure all glitching operations are complete
sleep_us(100);
// force success LED display
put_pixel(0); // clear any previous LED state
sleep_ms(50);
put_pixel(PIX_whi); // show white success
sleep_ms(200); // longer delay to ensure visibility
if ((count_fuses() & 1) != boot_slot)
{
// finish update / rollback
@ -197,7 +165,10 @@ int main()
add_boot_record(offset);
halt_with_error(0, 1);
}
if (full_try == 0) {
rewrite_payload();
}
}
// attempts limit
halt_with_error(7, 3);
}

63
misc.c
View file

@ -10,14 +10,13 @@
extern int ws_pio_offset;
// optimized: reduced timing constants for faster error signaling
#define BLINK_TIME 500
#define BLINK_TIME 700
#define SHORT_TIME ( BLINK_TIME * 2 / 10 )
#define SHORT_PAUSE_TIME ((BLINK_TIME - SHORT_TIME) / 2)
#define LONG_TIME ( BLINK_TIME * 8 / 10 )
#define LONG_PAUSE_TIME ((BLINK_TIME - LONG_TIME) / 2)
#define PAUSE_BETWEEN 1500
#define PAUSE_BEFORE 500
#define PAUSE_BETWEEN 2000
#define PAUSE_BEFORE 750
#define CODE_REPEATS 3
#define GPIO_OD PADS_BANK0_GPIO0_OD_BITS
@ -26,7 +25,6 @@ extern int ws_pio_offset;
typedef void nopar();
// optimized: streamlined power down sequence
void __not_in_flash_func(zzz)() {
*(uint32_t*)(0x4000803C + 0x3000) = 1; // go to 12 MHz
uint32_t * vreg = (uint32_t*)0x40064000;
@ -34,27 +32,30 @@ void __not_in_flash_func(zzz)() {
*(uint32_t*)0x40060000 = 0x00d1e000; // disable rosc
vreg[0] = 1; // lowest possible power
*(uint32_t*)0x40024000 = 0x00d1e000; // disable xosc
while(1) __asm volatile("wfi"); // optimized: use WFI to save more power
while(1);
}
// optimized: combined loop for faster execution
void finish_pins_except_leds() {
for(int pin = 0; pin <= 29; pin++) {
for(int pin = 0; pin <= 29; pin += 1) {
if (pin == led_pin() || pin == pwr_pin())
continue;
if (pin == PIN_GLI_PICO || pin == PIN_GLI_XIAO || pin == PIN_GLI_WS || pin == PIN_GLI_ITSY)
{
gpio_pull_down(pin);
}
else
{
gpio_disable_pulls(pin);
}
gpio_disable_input_output(pin);
}
}
void finish_pins_leds() {
if (!is_tiny())
{
gpio_disable_input_output(led_pin());
}
gpio_disable_input_output(pwr_pin());
}
@ -65,62 +66,50 @@ void halt_with_error(uint32_t err, uint32_t bits)
pio_set_sm_mask_enabled(pio1, 0xF, false);
set_sys_clock_khz(48000, true);
vreg_set_voltage(VREG_VOLTAGE_0_95);
if (bits != 1)
{
put_pixel(0);
sleep_ms(PAUSE_BEFORE);
}
for(int j = 0; j < CODE_REPEATS; j++)
{
for(int i = 0; i < bits; i++)
{
bool is_long = err & (1 << (bits - i - 1));
sleep_ms(is_long ? LONG_PAUSE_TIME : SHORT_PAUSE_TIME);
bool success = bits == 1 && is_long == 0;
put_pixel(success ? PIX_whi : PIX_red);
if (success)
put_pixel(PIX_whi);
else
put_pixel(PIX_red);
sleep_ms(is_long ? LONG_TIME : success ? SHORT_TIME * 2 : SHORT_TIME);
put_pixel(0);
if (i != bits - 1 || j != CODE_REPEATS - 1)
sleep_ms(is_long ? LONG_PAUSE_TIME : SHORT_PAUSE_TIME);
if (i == bits - 1 && j != CODE_REPEATS - 1)
sleep_ms(PAUSE_BETWEEN);
}
// first write case, do not repeat this kind of error code
if (bits == 1)
break;
}
finish_pins_leds();
zzz();
}
// optimized: reduced LED delays for faster startup
void put_pixel(uint32_t pixel_rgb)
void put_pixel(uint32_t pixel_grb)
{
static bool led_enabled = false;
if (is_pico())
{
gpio_init(led_pin());
if (pixel_rgb) {
if (pixel_grb) {
gpio_set_dir(led_pin(), true);
gpio_put(led_pin(), 1);
}
return;
}
uint8_t red = (pixel_rgb >> 16) & 0xFF;
uint8_t green = (pixel_rgb >> 8) & 0xFF;
uint8_t blue = pixel_rgb & 0xFF;
uint32_t pixel_grb = (green << 16) | (red << 8) | blue;
ws2812_program_init(pio0, 3, ws_pio_offset, led_pin(), 800000, true);
if (!led_enabled && pwr_pin() != 31)
{
led_enabled = true;
@ -128,40 +117,38 @@ void put_pixel(uint32_t pixel_rgb)
gpio_set_drive_strength(pwr_pin(), GPIO_DRIVE_STRENGTH_12MA);
gpio_set_dir(pwr_pin(), true);
gpio_put(pwr_pin(), 1);
sleep_us(100); // optimized: reduced from 200us
sleep_us(200);
}
pio_sm_put_blocking(pio0, 3, pixel_grb << 8u);
sleep_us(30); // optimized: reduced from 50us
sleep_us(50);
pio_sm_set_enabled(pio0, 3, false);
if (!is_tiny())
{
gpio_init(led_pin());
}
}
// optimized: direct register access
void gpio_disable_input_output(int pin)
{
uint32_t pad_reg = 0x4001c000 + 4 + (pin << 2); // optimized: Use shift instead of multiply
uint32_t pad_reg = 0x4001c000 + 4 + pin*4;
*(uint32_t*)(pad_reg + 0x2000) = GPIO_OD;
*(uint32_t*)(pad_reg + 0x3000) = GPIO_IE;
}
void gpio_enable_input_output(int pin)
{
uint32_t pad_reg = 0x4001c000 + 4 + (pin << 2); // optimized: Use shift instead of multiply
uint32_t pad_reg = 0x4001c000 + 4 + pin*4;
*(uint32_t*)(pad_reg + 0x3000) = GPIO_OD;
*(uint32_t*)(pad_reg + 0x2000) = GPIO_IE;
}
// optimized: reduced delays for faster reset cycles
void reset_cpu() {
gpio_enable_input_output(PIN_RST);
gpio_pull_up(PIN_RST);
sleep_us(800); // optimized: reduced from 1000us
sleep_us(1000);
gpio_init(PIN_RST);
gpio_set_dir(PIN_RST, true);
sleep_us(1800); // decreased slightly for button detection stability
sleep_us(2000);
gpio_deinit(PIN_RST);
gpio_disable_pulls(PIN_RST);
gpio_disable_input_output(PIN_RST);

9
misc.h
View file

@ -1,8 +1,9 @@
#define PIX_gre 0x16537e
#define PIX_red 0xc90000
#define PIX_whi 0xff9200
#define RGB(r, g, b) (((g) << 16) | ((r) << 8) | (b))
#define PIX_g 0x6fa8dc
#define PIX_blu RGB(0x16, 0x53, 0x7e) // blue (glitching)
#define PIX_b RGB(0x6f, 0xa8, 0xdc) // light blue dim (glitch pulse)
#define PIX_whi RGB(0xff, 0x92, 0x00) // amber/yellow (success + comparison)
#define PIX_red RGB(0xc9, 0x00, 0x00) // red (error codes)
void put_pixel(uint32_t pixel_grb);

119
payload.c
View file

@ -544,8 +544,19 @@ bool update_firmware(uint32_t start_block, uint32_t size_blocks) {
}
return true;
}
struct fw_info
{
uint32_t signature;
uint32_t fw_major;
uint32_t fw_minor;
uint32_t sdloader_hash;
uint32_t firmware_hash;
uint32_t fuse_count;
uint32_t bct_sub_fingerprint; // first 4 bytes of BctNormalSub
};
bool was_self_reset = false;
extern int boot_try;
bool check_and_resync_bct();
bool fast_check() {
start_mmc();
reinit_mmc();
@ -596,6 +607,26 @@ bool fast_check() {
gpio_deinit(sda_pin());
gpio_deinit(scl_pin());
}
// check if a syscfw update has written a new BCT to BctNormalSub since the last
// write_payload(). write_descriptor() stores a fingerprint of BctNormalSub's
// pubkey at the time write_payload() ran. if this has changed, Atmosphere has dropped
// a Main write and Sub is now ahead, resync Sub> Main and trigger rewrite_payload().
// on every normal boot this reads two blocks and returns is_space_bl unchanged.
if (is_space_bl && cmd_mmc_read(0x1FFF)) {
struct fw_info * fwi = (struct fw_info *)data_buf;
if (fwi->signature == 0x9cabe959) {
uint32_t stored = fwi->bct_sub_fingerprint;
if (cmd_mmc_read(0x040)) {
uint32_t current = *(uint32_t *)(data_buf + 0x10);
if (stored != current) {
// BctNormalSub has changed since last write_payload(), resync and rewrite
check_and_resync_bct();
stop_mmc();
return false;
}
}
}
}
stop_mmc();
return is_space_bl;
}
@ -642,16 +673,6 @@ void copy_bct(int start, int end) {
}
}
struct fw_info
{
uint32_t signature;
uint32_t fw_major;
uint32_t fw_minor;
uint32_t sdloader_hash;
uint32_t firmware_hash;
uint32_t fuse_count;
};
extern bool do_burn_fuses;
void write_descriptor()
@ -668,6 +689,11 @@ void write_descriptor()
fwi->fw_minor = VER_LO;
fwi->sdloader_hash = payload_crc();
fwi->firmware_hash = boot_slot ? fw_slot_1->crc : fw_slot_0->crc;
// store first 4 bytes of BctNormalSub pubkey
// so we can detect on next boot if a syscfw update has written a new BCT to Sub
fwi->bct_sub_fingerprint = 0;
if (cmd_mmc_read(0x040))
fwi->bct_sub_fingerprint = *(uint32_t *)(data_buf + 0x10);
// write the info block
write_data(desc_block, temp_buf, 512);
}
@ -708,6 +734,75 @@ void prepare_mariko_bct()
memcpy(data_bct + 0x480, mariko_bct_data, 0x2380);
}
/*
* Atmosphere's fs_mitm (fsmitm_boot0storage.cpp) intercepts all BOOT0 writes and
* drops writes to BctNormalMain (offset 0x0000) and BctSafeMain (offset 0x4000)
* when it detects the modchip's custom public key fill pattern (0x59, 0x69...) in those
* slots. this is by design for AutoRCM preservation, but it means that after a firmware
* update via syscfw, UpdateBootImages successfully writes the new BCT to BctNormalSub (0x8000) and BctSafeSub (0xC000),
* but the writes to BctNormalMain and BctSafeMain are discarded. the result is that Main slots still hold the modchip
* synthetic/fake BCT while Sub slots have the new firmware's real BCT.
*
* when hekate subsequently tries to launch OFW it reads BctNormalMain, which still points
* to the payload area (block 0x1F80) instead of the real pkg1, so OFW fails to boot.
*
* this function detects that diverged state and resyncs by copying Sub > Main for both
* Normal and Safe BCT pairs, restoring them to a consistent state before we overwrite
* Main with the synthetic/fake BCT again on this boot.
*
* detection: read block+1 of each BCT (BCT byte offset 0x220) and compare against the
* modchip magic values:
* erista: 0x69696969 (pubkey fill area spans BCT bytes 0x211-0x30E, 0x220 is within)
* mariko: 0xA56CA203 (first 4 bytes of mariko_bct_sign placed at BCT offset 0x220)
*
* BOOT0 block layout (512-byte blocks):
* BctNormalMain: 0x000-0x01F (BOOT0 byte offset 0x0000, BCT block 0 = BOOT0 block 0x000)
* BctSafeMain: 0x020-0x03F (BOOT0 byte offset 0x4000, BCT block 0 = BOOT0 block 0x020)
* BctNormalSub: 0x040-0x05F (BOOT0 byte offset 0x8000, BCT block 0 = BOOT0 block 0x040)
* BctSafeSub: 0x060-0x07F (BOOT0 byte offset 0xC000, BCT block 0 = BOOT0 block 0x060)
*
* magic is at BCT byte 0x220 = block-relative offset 0x20 within BCT block 1.
* so we read BOOT0 block (bct_start + 1) and check data_buf[0x20].
*/
static bool bct_block_has_modchip_magic(int bct_start_block) {
if (!cmd_mmc_read(bct_start_block + 1) && !cmd_mmc_read(bct_start_block + 1))
return false; // read failure; assume no magic, don't resync
uint32_t magic = *(uint32_t *)(data_buf + 0x20);
return magic == (mariko ? 0xA56CA203 : 0x69696969);
}
bool check_and_resync_bct() {
// only relevant on a configured boot where space_bl magic is already present,
// meaning write_payload has previously run and wrote the synthetic/fake BCT.
// if the chip is not yet configured there is nothing to resync.
if (!is_space_bl)
return false;
// check Normal BCT pair; Main has magic, Sub does not > Sub has a newer Nintendo BCT
bool normal_main_magic = bct_block_has_modchip_magic(0x000);
bool normal_sub_magic = bct_block_has_modchip_magic(0x040);
bool resynced = false;
if (normal_main_magic && !normal_sub_magic) {
// BctNormalSub was updated by a firmware update but BctNormalMain write was
// dropped by Atmosphere. copy Sub > Main to resync.
copy_bct(0x040, 0x000);
resynced = true;
}
// check Safe BCT pair; uses same logic
bool safe_main_magic = bct_block_has_modchip_magic(0x020);
bool safe_sub_magic = bct_block_has_modchip_magic(0x060);
if (safe_main_magic && !safe_sub_magic) {
copy_bct(0x060, 0x020);
resynced = true;
}
return resynced;
}
void write_payload() {
static bool prepared = false;
if (!prepared)
@ -720,6 +815,10 @@ void write_payload() {
}
start_mmc();
reinit_mmc();
// resync BctNormalMain/BctSafeMain from their Sub counterparts if Atmosphere's
// fs_mitm has silently dropped writes to Main during a syscfw firmware update.
// *has to* run before copy_bct backs up Main, so the backup captures the correct state.
check_and_resync_bct();
if (!is_space_bl && !is_command)
{
copy_bct(0x0, 0x7A0);

View file

@ -19,7 +19,7 @@ fi
# detect distribution
if [ -f /etc/os-release ]; then
. /etc/os-release
DISTRO=$ID
DISTRO=${ID-LIKE:-$ID}
else
echo -e "${RED}Error: Cannot detect distribution${NC}"
exit 1

View file

@ -12,7 +12,7 @@ echo -e "${GREEN}=== Picofly build script (multi-distro) ===${NC}\n"
# detect distribution
if [ -f /etc/os-release ]; then
. /etc/os-release
DISTRO=$ID
DISTRO=${ID_LIKE:-$ID}
else
echo -e "${RED}Error: Cannot detect distribution${NC}"
exit 1

1
test123 Normal file
View file

@ -0,0 +1 @@
asdöfgljkklgj