mirror of
https://github.com/arendst/Tasmota.git
synced 2025-04-26 15:57:16 +00:00
Merge pull request #15614 from s-hadinger/parwiz_bed
Partition Wizard compiled bytecode
This commit is contained in:
commit
c62ed6a89f
Binary file not shown.
Binary file not shown.
BIN
tasmota/berry/modules/Partition_Wizard.tapp
Normal file
BIN
tasmota/berry/modules/Partition_Wizard.tapp
Normal file
Binary file not shown.
BIN
tasmota/berry/modules/Partition_Wizard/partition_wizard.bec
Normal file
BIN
tasmota/berry/modules/Partition_Wizard/partition_wizard.bec
Normal file
Binary file not shown.
Binary file not shown.
@ -22,27 +22,154 @@ var partition = module('partition')
|
|||||||
# } esp_partition_info_t_simplified;
|
# } esp_partition_info_t_simplified;
|
||||||
#
|
#
|
||||||
#######################################################################
|
#######################################################################
|
||||||
# class Partition_info
|
class Partition_info
|
||||||
#
|
var type
|
||||||
# def init(raw)
|
var subtype
|
||||||
#
|
var start
|
||||||
# # check if the parition is an OTA partition
|
var size
|
||||||
# # if yes, return OTA number (starting at 0)
|
var label
|
||||||
# # if no, return nil
|
var flags
|
||||||
# def is_ota()
|
|
||||||
#
|
#- remove trailing NULL chars from a buffer before converting to string -#
|
||||||
# # # check if the parition is a SPIFFS partition
|
#- Berry strings can contain NULL, but this messes up C-Berry interface -#
|
||||||
# # returns bool
|
static def remove_trailing_zeroes(b)
|
||||||
# def is_spiffs()
|
while size(b) > 0
|
||||||
#
|
if b[-1] == 0 b.resize(size(b)-1)
|
||||||
# # get the actual image size give of the partition
|
else break end
|
||||||
# # returns -1 if the partition is not an app ota partition
|
end
|
||||||
# def get_image_size()
|
return b
|
||||||
#
|
end
|
||||||
# def tostring()
|
|
||||||
#
|
#
|
||||||
# def tobytes()
|
def init(raw)
|
||||||
#end
|
if raw == nil || !issubclass(bytes, raw) # no payload, empty partition information
|
||||||
|
self.type = 0
|
||||||
|
self.subtype = 0
|
||||||
|
self.start = 0
|
||||||
|
self.size = 0
|
||||||
|
self.label = ''
|
||||||
|
self.flags = 0
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
|
#- we have a payload, parse it -#
|
||||||
|
var magic = raw.get(0,2)
|
||||||
|
if magic == 0x50AA #- partition entry -#
|
||||||
|
|
||||||
|
self.type = raw.get(2,1)
|
||||||
|
self.subtype = raw.get(3,1)
|
||||||
|
self.start = raw.get(4,4)
|
||||||
|
self.size = raw.get(8,4)
|
||||||
|
self.label = self.remove_trailing_zeroes(raw[12..27]).asstring()
|
||||||
|
self.flags = raw.get(28,4)
|
||||||
|
|
||||||
|
elif magic == 0xEBEB #- MD5 -#
|
||||||
|
else
|
||||||
|
import string
|
||||||
|
raise "internal_error", string.format("invalid magic number %02X", magic)
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
|
||||||
|
# check if the parition is an OTA partition
|
||||||
|
# if yes, return OTA number (starting at 0)
|
||||||
|
# if no, return nil
|
||||||
|
def is_ota()
|
||||||
|
if self.type == 0 && (self.subtype >= 0x10 && self.subtype < 0x20)
|
||||||
|
return self.subtype - 0x10
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# check if the parition is a SPIFFS partition
|
||||||
|
# returns bool
|
||||||
|
def is_spiffs()
|
||||||
|
return self.type == 1 && self.subtype == 130
|
||||||
|
end
|
||||||
|
|
||||||
|
# get the actual image size give of the partition
|
||||||
|
# returns -1 if the partition is not an app ota partition
|
||||||
|
def get_image_size()
|
||||||
|
import flash
|
||||||
|
if self.is_ota() == nil return -1 end
|
||||||
|
try
|
||||||
|
var addr = self.start
|
||||||
|
var magic_byte = flash.read(addr, 1).get(0, 1)
|
||||||
|
if magic_byte != 0xE9 return -1 end
|
||||||
|
|
||||||
|
var seg_count = flash.read(addr+1, 1).get(0, 1)
|
||||||
|
# print("Segment count", seg_count)
|
||||||
|
|
||||||
|
var seg_offset = addr + 0x20 # sizeof(esp_image_header_t) + sizeof(esp_image_segment_header_t) = 24 + 8
|
||||||
|
|
||||||
|
for seg_num:0..seg_count-1
|
||||||
|
# print(string.format("Reading 0x%08X", seg_offset))
|
||||||
|
var segment_header = flash.read(seg_offset - 8, 8)
|
||||||
|
var seg_start_addr = segment_header.get(0, 4)
|
||||||
|
var seg_size = segment_header.get(4,4)
|
||||||
|
# print(string.format("Segment %i: flash_offset=0x%08X start_addr=0x%08X size=0x%08X", seg_num, seg_offset, seg_start_addr, seg_size))
|
||||||
|
|
||||||
|
seg_offset += seg_size + 8 # add segment_length + sizeof(esp_image_segment_header_t)
|
||||||
|
end
|
||||||
|
var total_size = seg_offset - addr + 1 # add 1KB for safety
|
||||||
|
|
||||||
|
# print(string.format("Total size = %i KB", total_size/1024))
|
||||||
|
|
||||||
|
return total_size
|
||||||
|
except .. as e, m
|
||||||
|
print("BRY: Exception> '" + e + "' - " + m)
|
||||||
|
return -1
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def tostring()
|
||||||
|
import string
|
||||||
|
var type_s = ""
|
||||||
|
var subtype_s = ""
|
||||||
|
if self.type == 0 type_s = "app"
|
||||||
|
if self.subtype == 0 subtype_s = "factory"
|
||||||
|
elif self.subtype >= 0x10 && self.subtype < 0x20 subtype_s = "ota" + str(self.subtype - 0x10)
|
||||||
|
elif self.subtype == 0x20 subtype_s = "test"
|
||||||
|
end
|
||||||
|
elif self.type == 1 type_s = "data"
|
||||||
|
if self.subtype == 0x00 subtype_s = "otadata"
|
||||||
|
elif self.subtype == 0x01 subtype_s = "phy"
|
||||||
|
elif self.subtype == 0x02 subtype_s = "nvs"
|
||||||
|
elif self.subtype == 0x03 subtype_s = "coredump"
|
||||||
|
elif self.subtype == 0x04 subtype_s = "nvskeys"
|
||||||
|
elif self.subtype == 0x05 subtype_s = "efuse_em"
|
||||||
|
elif self.subtype == 0x80 subtype_s = "esphttpd"
|
||||||
|
elif self.subtype == 0x81 subtype_s = "fat"
|
||||||
|
elif self.subtype == 0x82 subtype_s = "spiffs"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
#- reformat strings -#
|
||||||
|
if type_s != "" type_s = " (" + type_s + ")" end
|
||||||
|
if subtype_s != "" subtype_s = " (" + subtype_s + ")" end
|
||||||
|
return string.format("<instance: Partition_info(%d%s,%d%s,0x%08X,0x%08X,'%s',0x%X)>",
|
||||||
|
self.type, type_s,
|
||||||
|
self.subtype, subtype_s,
|
||||||
|
self.start, self.size,
|
||||||
|
self.label, self.flags)
|
||||||
|
end
|
||||||
|
|
||||||
|
def tobytes()
|
||||||
|
#- convert to raw bytes -#
|
||||||
|
var b = bytes('AA50') #- set magic number -#
|
||||||
|
b.resize(32).resize(2) #- pre-reserve 32 bytes -#
|
||||||
|
b.add(self.type, 1)
|
||||||
|
b.add(self.subtype, 1)
|
||||||
|
b.add(self.start, 4)
|
||||||
|
b.add(self.size, 4)
|
||||||
|
var label = bytes().fromstring(self.label)
|
||||||
|
label.resize(16)
|
||||||
|
b = b + label
|
||||||
|
b.add(self.flags, 4)
|
||||||
|
return b
|
||||||
|
end
|
||||||
|
|
||||||
|
end
|
||||||
|
partition.Partition_info = Partition_info
|
||||||
|
|
||||||
#-------------------------------------------------------------
|
#-------------------------------------------------------------
|
||||||
- OTA Data
|
- OTA Data
|
||||||
@ -73,77 +200,302 @@ var partition = module('partition')
|
|||||||
so current ota app sub type id is x , dest bin subtype is y,total ota app count is n
|
so current ota app sub type id is x , dest bin subtype is y,total ota app count is n
|
||||||
seq will add (x + n*1 + 1 - seq)%n
|
seq will add (x + n*1 + 1 - seq)%n
|
||||||
-------------------------------------------------------------#
|
-------------------------------------------------------------#
|
||||||
# class Partition_otadata
|
class Partition_otadata
|
||||||
# var maxota #- number of highest OTA partition, default 1 (double ota0/ota1) -#
|
var maxota #- number of highest OTA partition, default 1 (double ota0/ota1) -#
|
||||||
# var offset #- offset of the otadata partition (0x2000 in length), default 0xE000 -#
|
var offset #- offset of the otadata partition (0x2000 in length), default 0xE000 -#
|
||||||
# var active_otadata #- which otadata block is active, 0 or 1, i.e. 0xE000 or 0xF000 -#
|
var active_otadata #- which otadata block is active, 0 or 1, i.e. 0xE000 or 0xF000 -#
|
||||||
# var seq0 #- ota_seq of first block -#
|
var seq0 #- ota_seq of first block -#
|
||||||
# var seq1 #- ota_seq of second block -#
|
var seq1 #- ota_seq of second block -#
|
||||||
#
|
|
||||||
# #- crc32 for ota_seq as 32 bits unsigned, with init vector -1 -#
|
#-------------------------------------------------------------
|
||||||
# static def crc32_ota_seq(seq)
|
- Simple CRC32 imple
|
||||||
#
|
-
|
||||||
# #---------------------------------------------------------------------#
|
- adapted from Python https://rosettacode.org/wiki/CRC-32#Python
|
||||||
# # Rest of the class
|
-------------------------------------------------------------#
|
||||||
# #---------------------------------------------------------------------#
|
static def crc32_create_table()
|
||||||
# def init(maxota, offset)
|
var a = []
|
||||||
#
|
for i:0..255
|
||||||
# #- update ota_max, needs to recompute everything -#
|
var k = i
|
||||||
# def set_ota_max(n)
|
for j:0..7
|
||||||
#
|
if k & 1
|
||||||
# # change the active OTA partition
|
k = (k >> 1) & 0x7FFFFFFF
|
||||||
# def set_active(n)
|
k ^= 0xedb88320
|
||||||
#
|
else
|
||||||
# #- load otadata from SPI Flash -#
|
k = (k >> 1) & 0x7FFFFFFF
|
||||||
# def load()
|
end
|
||||||
#
|
end
|
||||||
# # Save partition information to SPI Flash
|
a.push(k)
|
||||||
# def save()
|
end
|
||||||
#
|
return a
|
||||||
# # Produce a human-readable representation of the object with relevant information
|
end
|
||||||
# def tostring()
|
static crc32_table = Partition_otadata.crc32_create_table()
|
||||||
#end
|
|
||||||
|
static def crc32_update(buf, crc)
|
||||||
|
crc ^= 0xffffffff
|
||||||
|
for k:0..size(buf)-1
|
||||||
|
crc = (crc >> 8 & 0x00FFFFFF) ^ Partition_otadata.crc32_table[(crc & 0xff) ^ buf[k]]
|
||||||
|
end
|
||||||
|
return crc ^ 0xffffffff
|
||||||
|
end
|
||||||
|
|
||||||
|
#- crc32 for ota_seq as 32 bits unsigned, with init vector -1 -#
|
||||||
|
static def crc32_ota_seq(seq)
|
||||||
|
return Partition_otadata.crc32_update(bytes().add(seq, 4), 0xFFFFFFFF)
|
||||||
|
end
|
||||||
|
|
||||||
|
#---------------------------------------------------------------------#
|
||||||
|
# Rest of the class
|
||||||
|
#---------------------------------------------------------------------#
|
||||||
|
def init(maxota, offset)
|
||||||
|
self.maxota = maxota
|
||||||
|
if self.maxota == nil self.maxota = 1 end
|
||||||
|
self.offset = offset
|
||||||
|
if self.offset == nil self.offset = 0xE000 end
|
||||||
|
self.active_otadata = 0
|
||||||
|
self.load()
|
||||||
|
end
|
||||||
|
|
||||||
|
#- update ota_max, needs to recompute everything -#
|
||||||
|
def set_ota_max(n)
|
||||||
|
self.maxota = n
|
||||||
|
end
|
||||||
|
|
||||||
|
# change the active OTA partition
|
||||||
|
def set_active(n)
|
||||||
|
var seq_max = 0 #- current highest seq number -#
|
||||||
|
var block_act = 0 #- block number containing the highest seq number -#
|
||||||
|
|
||||||
|
if self.seq0 != nil
|
||||||
|
seq_max = self.seq0
|
||||||
|
block_act = 0
|
||||||
|
end
|
||||||
|
if self.seq1 != nil && self.seq1 > seq_max
|
||||||
|
seq_max = self.seq1
|
||||||
|
block_act = 1
|
||||||
|
end
|
||||||
|
|
||||||
|
#- compute the next sequence number -#
|
||||||
|
var actual_ota = (seq_max - 1) % (self.maxota + 1)
|
||||||
|
if actual_ota != n #- change only if different -#
|
||||||
|
if n > actual_ota seq_max += n - actual_ota
|
||||||
|
else seq_max += (self.maxota + 1) - actual_ota + n
|
||||||
|
end
|
||||||
|
|
||||||
|
#- update internal structure -#
|
||||||
|
if block_act == 1 #- current block is 1, so update block 0 -#
|
||||||
|
self.seq0 = seq_max
|
||||||
|
else #- or write to block 1 -#
|
||||||
|
self.seq1 = seq_max
|
||||||
|
end
|
||||||
|
self._validate()
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
#- load otadata from SPI Flash -#
|
||||||
|
def load()
|
||||||
|
import flash
|
||||||
|
var otadata0 = flash.read(0xE000, 32)
|
||||||
|
var otadata1 = flash.read(0xF000, 32)
|
||||||
|
self.seq0 = otadata0.get(0, 4) #- ota_seq for block 1 -#
|
||||||
|
self.seq1 = otadata1.get(0, 4) #- ota_seq for block 2 -#
|
||||||
|
var valid0 = otadata0.get(28, 4) == self.crc32_ota_seq(self.seq0) #- is CRC32 valid? -#
|
||||||
|
var valid1 = otadata1.get(28, 4) == self.crc32_ota_seq(self.seq1) #- is CRC32 valid? -#
|
||||||
|
if !valid0 self.seq0 = nil end
|
||||||
|
if !valid1 self.seq1 = nil end
|
||||||
|
|
||||||
|
self._validate()
|
||||||
|
end
|
||||||
|
|
||||||
|
#- internally used, validate data -#
|
||||||
|
def _validate()
|
||||||
|
self.active_otadata = 0 #- if none is valid, default to OTA0 -#
|
||||||
|
if self.seq0 != nil
|
||||||
|
self.active_otadata = (self.seq0 - 1) % (self.maxota + 1)
|
||||||
|
end
|
||||||
|
if self.seq1 != nil && (self.seq0 == nil || self.seq1 > self.seq0)
|
||||||
|
self.active_otadata = (self.seq1 - 1) % (self.maxota + 1)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
# Save partition information to SPI Flash
|
||||||
|
def save()
|
||||||
|
import flash
|
||||||
|
#- check the block number to save, 0 or 1. Choose the highest ota_seq -#
|
||||||
|
var block_to_save = -1 #- invalid -#
|
||||||
|
var seq_to_save = -1 #- invalid value -#
|
||||||
|
|
||||||
|
# check seq0
|
||||||
|
if self.seq0 != nil
|
||||||
|
seq_to_save = self.seq0
|
||||||
|
block_to_save = 0
|
||||||
|
end
|
||||||
|
if (self.seq1 != nil) && (self.seq1 > seq_to_save)
|
||||||
|
seq_to_save = self.seq1
|
||||||
|
block_to_save = 1
|
||||||
|
end
|
||||||
|
# if none was good
|
||||||
|
if block_to_save < 0 block_to_save = 0 end
|
||||||
|
if seq_to_save < 0 seq_to_save = 1 end
|
||||||
|
|
||||||
|
var offset_to_save = self.offset + 0x1000 * block_to_save #- default 0xE000 or 0xF000 -#
|
||||||
|
|
||||||
|
var bytes_to_save = bytes()
|
||||||
|
bytes_to_save.add(seq_to_save, 4)
|
||||||
|
bytes_to_save += bytes("FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF")
|
||||||
|
bytes_to_save.add(self.crc32_ota_seq(seq_to_save), 4)
|
||||||
|
|
||||||
|
#- erase flash area and write -#
|
||||||
|
flash.erase(offset_to_save, 0x1000)
|
||||||
|
flash.write(offset_to_save, bytes_to_save)
|
||||||
|
end
|
||||||
|
|
||||||
|
# Produce a human-readable representation of the object with relevant information
|
||||||
|
def tostring()
|
||||||
|
import string
|
||||||
|
return string.format("<instance: Partition_otadata(ota_active:%d, ota_seq=[%d,%d], ota_max=%d)>",
|
||||||
|
self.active_otadata, self.seq0, self.seq1, self.maxota)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
partition.Partition_otadata = Partition_otadata
|
||||||
|
|
||||||
#-------------------------------------------------------------
|
#-------------------------------------------------------------
|
||||||
- Class for a partition table entry
|
- Class for a partition table entry
|
||||||
-------------------------------------------------------------#
|
-------------------------------------------------------------#
|
||||||
#class Partition
|
class Partition
|
||||||
# var raw #- raw bytes of the partition table in flash -#
|
var raw #- raw bytes of the partition table in flash -#
|
||||||
# var md5 #- md5 hash of partition list -#
|
var md5 #- md5 hash of partition list -#
|
||||||
# var slots
|
var slots
|
||||||
# var otadata #- instance of Partition_otadata() -#
|
var otadata #- instance of Partition_otadata() -#
|
||||||
#
|
|
||||||
# def init()
|
def init()
|
||||||
#
|
self.slots = []
|
||||||
# # Load partition information from SPI Flash
|
self.load()
|
||||||
# def load()
|
self.parse()
|
||||||
#
|
self.load_otadata()
|
||||||
# def get_ota_slot(n)
|
end
|
||||||
#
|
|
||||||
# #- compute the highest ota<x> partition -#
|
# Load partition information from SPI Flash
|
||||||
# def ota_max()
|
def load()
|
||||||
#
|
import flash
|
||||||
# def load_otadata()
|
self.raw = flash.read(0x8000,0x1000)
|
||||||
#
|
end
|
||||||
# # get the active OTA app partition number
|
|
||||||
# def get_active()
|
#- parse the raw bytes to a structured list of partition items -#
|
||||||
#
|
def parse()
|
||||||
# #- change the active partition -#
|
for i:0..94 # there are maximum 95 slots + md5 (0xC00)
|
||||||
# def set_active(n)
|
var item_raw = self.raw[i*32..(i+1)*32-1]
|
||||||
#
|
var magic = item_raw.get(0,2)
|
||||||
# #- convert to human readble -#
|
if magic == 0x50AA #- partition entry -#
|
||||||
# def tostring()
|
var slot = Partition_info(item_raw)
|
||||||
#
|
self.slots.push(slot)
|
||||||
# #- convert the slots to raw bytes, ready to falsh to parition page -#
|
elif magic == 0xEBEB #- MD5 -#
|
||||||
# def tobytes()
|
self.md5 = self.raw[i*32+16..i*33-1]
|
||||||
#
|
break
|
||||||
# #- write back to flash -#
|
else
|
||||||
# def save()
|
break
|
||||||
#
|
end
|
||||||
# #- invalidate SPIFFS partition to force format at next boot -#
|
end
|
||||||
# #- we simply erase the first byte of the first 2 blocks in the SPIFFS partition -#
|
end
|
||||||
# def invalidate_spiffs()
|
|
||||||
#end
|
def get_ota_slot(n)
|
||||||
|
for slot: self.slots
|
||||||
|
if slot.is_ota() == n return slot end
|
||||||
|
end
|
||||||
|
return nil
|
||||||
|
end
|
||||||
|
|
||||||
|
#- compute the highest ota<x> partition -#
|
||||||
|
def ota_max()
|
||||||
|
var ota_max = 0
|
||||||
|
for slot:self.slots
|
||||||
|
if slot.type == 0 && (slot.subtype >= 0x10 && slot.subtype < 0x20)
|
||||||
|
var ota_num = slot.subtype - 0x10
|
||||||
|
if ota_num > ota_max ota_max = ota_num end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
return ota_max
|
||||||
|
end
|
||||||
|
|
||||||
|
def load_otadata()
|
||||||
|
#- look for otadata partition offset, and max_ota -#
|
||||||
|
var otadata_offset = 0xE000 #- default value -#
|
||||||
|
var ota_max = self.ota_max()
|
||||||
|
for slot:self.slots
|
||||||
|
if slot.type == 1 && slot.subtype == 0 #- otadata -#
|
||||||
|
otadata_offset = slot.start
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
self.otadata = Partition_otadata(ota_max, otadata_offset)
|
||||||
|
end
|
||||||
|
|
||||||
|
# get the active OTA app partition number
|
||||||
|
def get_active()
|
||||||
|
return self.otadata.active_otadata
|
||||||
|
end
|
||||||
|
|
||||||
|
#- change the active partition -#
|
||||||
|
def set_active(n)
|
||||||
|
if n < 0 || n > self.ota_max() raise "value_error", "Invalid ota partition number" end
|
||||||
|
self.otadata.set_ota_max(self.ota_max()) #- update ota_max if it changed -#
|
||||||
|
self.otadata.set_active(n)
|
||||||
|
end
|
||||||
|
|
||||||
|
#- convert to human readble -#
|
||||||
|
def tostring()
|
||||||
|
var ret = "<instance: Partition([\n"
|
||||||
|
for slot: self.slots
|
||||||
|
ret += " "
|
||||||
|
ret += slot.tostring()
|
||||||
|
ret += "\n"
|
||||||
|
end
|
||||||
|
ret += "],\n "
|
||||||
|
ret += self.otadata.tostring()
|
||||||
|
ret += "\n)>"
|
||||||
|
return ret
|
||||||
|
end
|
||||||
|
|
||||||
|
#- convert the slots to raw bytes, ready to falsh to parition page -#
|
||||||
|
def tobytes()
|
||||||
|
if size(self.slots) > 95 raise "value_error", "Too many partiition slots" end
|
||||||
|
var b = bytes()
|
||||||
|
for slot: self.slots
|
||||||
|
b += slot.tobytes()
|
||||||
|
end
|
||||||
|
#- compute MD5 -#
|
||||||
|
var md5 = MD5()
|
||||||
|
md5.update(b)
|
||||||
|
#- add the last segment -#
|
||||||
|
b += bytes("EBEBFFFFFFFFFFFFFFFFFFFFFFFFFFFF")
|
||||||
|
b += md5.finish()
|
||||||
|
#- complete -#
|
||||||
|
return b
|
||||||
|
end
|
||||||
|
|
||||||
|
#- write back to flash -#
|
||||||
|
def save()
|
||||||
|
import flash
|
||||||
|
var b = self.tobytes()
|
||||||
|
#- erase flash area and write -#
|
||||||
|
flash.erase(0x8000, 0x1000)
|
||||||
|
flash.write(0x8000, b)
|
||||||
|
self.otadata.save()
|
||||||
|
end
|
||||||
|
|
||||||
|
#- invalidate SPIFFS partition to force format at next boot -#
|
||||||
|
#- we simply erase the first byte of the first 2 blocks in the SPIFFS partition -#
|
||||||
|
def invalidate_spiffs()
|
||||||
|
import flash
|
||||||
|
#- we expect the SPIFFS partition to be the last one -#
|
||||||
|
var spiffs = self.slots[-1]
|
||||||
|
if !spiffs.is_spiffs() raise 'value_error', 'No SPIFFS partition found' end
|
||||||
|
|
||||||
|
var b = bytes("00") #- flash memory: we can turn bits from '1' to '0' -#
|
||||||
|
flash.write(spiffs.start , b) #- block #0 -#
|
||||||
|
flash.write(spiffs.start + 0x1000, b) #- block #1 -#
|
||||||
|
end
|
||||||
|
end
|
||||||
|
partition.Partition = Partition
|
||||||
|
|
||||||
#################################################################################
|
#################################################################################
|
||||||
# Partition_manager_UI
|
# Partition_manager_UI
|
||||||
@ -159,7 +511,7 @@ class Partition_manager_UI
|
|||||||
def web_add_button()
|
def web_add_button()
|
||||||
import webserver
|
import webserver
|
||||||
webserver.content_send(
|
webserver.content_send(
|
||||||
"<form id=but_part_mgr style='display: block;' action='part_mgr' method='get'><button>Partition Manager</button></form>")
|
"<form id=but_part_mgr style='display: block;' action='part_mgr' method='get'><button>Partition Manager</button></form><p></p>")
|
||||||
end
|
end
|
||||||
|
|
||||||
#- ---------------------------------------------------------------------- -#
|
#- ---------------------------------------------------------------------- -#
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
# use : `import partition_wizard`
|
# use : `import partition_wizard`
|
||||||
#
|
#
|
||||||
# Provides low-level objects and a Web UI
|
# Provides low-level objects and a Web UI
|
||||||
|
# rm Partition_Wizard.tapp; zip Partition_Wizard.tapp -j -0 Partition_Wizard/*
|
||||||
#######################################################################
|
#######################################################################
|
||||||
|
|
||||||
var partition_wizard = module('partition_wizard')
|
var partition_wizard = module('partition_wizard')
|
||||||
@ -50,7 +51,7 @@ class Partition_wizard_UI
|
|||||||
def web_add_button()
|
def web_add_button()
|
||||||
import webserver
|
import webserver
|
||||||
webserver.content_send(
|
webserver.content_send(
|
||||||
"<form id=but_part_mgr style='display: block;' action='part_wiz' method='get'><button>Partition Wizard</button></form>")
|
"<form id=but_part_mgr style='display: block;' action='part_wiz' method='get'><button>Partition Wizard</button></form><p></p>")
|
||||||
end
|
end
|
||||||
|
|
||||||
#- ---------------------------------------------------------------------- -#
|
#- ---------------------------------------------------------------------- -#
|
Loading…
x
Reference in New Issue
Block a user