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

examples/ota: add documentation on how to deliver update via ethos #12

Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
1182416
Makefile.dep: process cpu dependencies
cladmi Jun 6, 2018
81cabe6
stm32_common: add a Makefile.dep used in cpus
cladmi Jun 6, 2018
156e51f
stm32_common: move FEATURES dependency Makefile.dep
cladmi Jun 6, 2018
2a2dd92
REWORD ME riotboot: introduce riot-based minimal bootloader
kaspar030 Jun 15, 2017
25afffb
makefiles/riotboot: generate separate .signed.bin file
cladmi Jun 5, 2018
418dfdd
makefiles/riotboot: allow generating a combined binary
cladmi Jun 6, 2018
63f5f2a
EDIT/REWORD ME sys/firmware: initial import of firmware management fu…
kaspar030 Jun 16, 2017
a33101c
dist/tools/firmware: initial import of firmware metadata tools
kaspar030 Jun 16, 2017
04afcb7
cpu/cortexm_common: set MSP instead of PSP in cpu_jump_to_image()
kaspar030 Oct 5, 2017
e378aab
cpu/cortexm_common: initial multislot support
kaspar030 Jun 15, 2017
e5dacff
sys/ota: introduce CoAP OTA module
kaspar030 Mar 14, 2018
06b514a
examples/ota: initial commit of OTA example
kaspar030 Mar 14, 2018
3f2f054
Split update into firmware_simple and firmware_flashwrite
bergzand Apr 24, 2018
8a7bf88
firmware: remove metadata_type from struct
bergzand May 2, 2018
61da129
suit: Initial include of SUIT manifest parser
bergzand May 23, 2018
755b8f3
Add conditional support
bergzand May 29, 2018
415433f
ota_suit: Initial work
bergzand May 29, 2018
ea3f63e
TODO BACKPORT IN INITIAL COMMITS firmware: fix support for bigger fla…
cladmi Jun 6, 2018
c1566cc
nanocoap: Add server-side block2 support (REBASED not sure of current…
bergzand Apr 11, 2018
365fc8e
examples/nanocoap: add blockwise block2 example
bergzand Apr 11, 2018
8846d66
getters for the uuids
bergzand May 29, 2018
7cc7e3a
Add simple url extraction
bergzand May 29, 2018
574df89
url parsing
bergzand May 29, 2018
adcb076
Update
bergzand Jun 5, 2018
c3e370c
gen_manifest: add raw option
bergzand Jun 5, 2018
62cd143
suit_updater: generate the keys.h from firmware.pub.key
cladmi Jun 5, 2018
80f9b25
DEBUG COMMIT REMOVE ME suit_updater: add ps debug output
cladmi Jun 5, 2018
d7c8e78
DEBUG COMMIT sys/firmware: HACK disable _update_time as it is not wor…
cladmi Jun 5, 2018
5a7c6ee
ota_suit: increase STACKSIZE as it overflowed
cladmi Jun 5, 2018
f848941
DEBUG COMMIT: suit_updater: add global ipv6 addresses print
cladmi Jun 6, 2018
c17bccf
firmware: add some debug information for flashwrite_putbytes
cladmi Jun 6, 2018
becb3fb
fixup! ota_suit: Initial work
kYc0o Sep 14, 2018
5baecc1
fixup! examples/ota: initial commit of OTA example
kYc0o Sep 14, 2018
f8e30ef
fixup! ota_suit: Initial work
kYc0o Sep 14, 2018
add2def
fixup! sys/ota: introduce CoAP OTA module
kYc0o Sep 14, 2018
d8e8d94
fixup! nanocoap: Add server-side block2 support (REBASED not sure of …
kYc0o Sep 14, 2018
a10add1
fixup! fixup! sys/ota: introduce CoAP OTA module
kYc0o Sep 14, 2018
630a5e9
fixup! makefiles/riotboot: generate separate .signed.bin file
kYc0o Sep 14, 2018
9e60432
fixup! ota_suit: Initial work
kYc0o Sep 14, 2018
ec945ad
fixup! ota_suit: Initial work
kYc0o Sep 14, 2018
4439c57
squash! REWORD ME riotboot: introduce riot-based minimal bootloader
cladmi Sep 17, 2018
e29308c
Fix FIRMWARE_METADATA_SIZE typo in riotboot.mk
fedepell Sep 17, 2018
f95a056
squash! makefiles/riotboot: generate separate .signed.bin file
cladmi Sep 19, 2018
b9eff7f
fixup! makefiles/riotboot: allow generating a combined binary
cladmi Sep 19, 2018
2400468
squash! squash! makefiles/riotboot: generate separate .signed.bin file
cladmi Sep 19, 2018
c413e8c
examples/ota: tiny documentation fix
fedepell Sep 20, 2018
116dc23
makefiles/riotboot.mk: enforce rule precedence (signed.bin before .bin)
fedepell Sep 20, 2018
314a05f
Merge pull request #10 from fedepell/ota_contrib_4
cladmi Sep 24, 2018
2e0d97d
examples/ota: add documentation on how to deliver update via ethos
fedepell Oct 5, 2018
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
stm32_common: add a Makefile.dep used in cpus
Prepare to move some dependencies out of Makefile.include
  • Loading branch information
cladmi committed Sep 19, 2018
commit 81cabe6cba7cb5b58894066e65ade00bdf7a4d32
1 change: 1 addition & 0 deletions cpu/stm32f0/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32f1/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32f2/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32f3/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32f4/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32f7/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32l0/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32l1/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep
1 change: 1 addition & 0 deletions cpu/stm32l4/Makefile.dep
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include $(RIOTCPU)/stm32_common/Makefile.dep