Skip to content

Commit c4b8ff3

Browse files
committed
Update git URLS, MCUboot is now independent w/ different GitHub org.
1 parent bf83493 commit c4b8ff3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ RUN unzip -q /tmp/nRF5_SDK_15.3.0_59ac345 -d /opt
5555
RUN rm /tmp/nRF5_SDK_15.3.0_59ac345
5656
# McuBoot
5757
# RUN bash -c "source /opt/build.sh; GetMcuBoot;"
58-
RUN git clone https://github.com/JuulLabs-OSS/mcuboot.git
58+
RUN git clone https://github.com/mcu-tools/mcuboot.git
5959
RUN pip3 install -r ./mcuboot/scripts/requirements.txt
6060

6161
RUN adduser infinitime

.devcontainer/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ GetGcc() {
4343
}
4444

4545
GetMcuBoot() {
46-
git clone https://github.com/JuulLabs-OSS/mcuboot.git "$TOOLS_DIR/mcuboot"
46+
git clone https://github.com/mcu-tools/mcuboot.git "$TOOLS_DIR/mcuboot"
4747
pip3 install -r "$TOOLS_DIR/mcuboot/scripts/requirements.txt"
4848
}
4949

bootloader/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# About this bootloader
2-
The [bootloader](https://github.com/lupyuen/pinetime-rust-mynewt/tree/master/libs/pinetime_boot/src) is mostly developed by [Lup Yuen](https://github.com/lupyuen). It is based on [MCUBoot](https://juullabs-oss.github.io/mcuboot/) and [Mynewt](https://mynewt.apache.org/).
2+
The [bootloader](https://github.com/lupyuen/pinetime-rust-mynewt/tree/master/libs/pinetime_boot/src) is mostly developed by [Lup Yuen](https://github.com/lupyuen). It is based on [MCUBoot](https://www.mcuboot.com) and [Mynewt](https://mynewt.apache.org/).
33

44
The goal of this project is to provide a common bootloader for multiple (all?) Pinetime projects. It allows to upgrade the current bootloader and even replace the current application by another one that supports the same bootloader.
55

@@ -86,7 +86,7 @@ make pinetime-mcuboot-app
8686

8787
The binary is located in *<build directory>/src/pinetime-mcuboot-app.bin*.
8888

89-
It must me converted into a MCUBoot image using *imgtool.py* from [MCUBoot](https://github.com/JuulLabs-OSS/mcuboot/tree/master/scripts). Simply checkout the project and run the script <mcuboot root>/scripts/imgtool.py with the following command line:
89+
It must me converted into a MCUBoot image using *imgtool.py* from [MCUBoot](https://github.com/mcu-tools/mcuboot/tree/master/scripts). Simply checkout the project and run the script <mcuboot root>/scripts/imgtool.py with the following command line:
9090

9191
`
9292
imgtool.py create --align 4 --version 1.0.0 --header-size 32 --slot-size 475136 --pad-header <build directory>/src/pinetime-mcuboot-app.bin image.bin

docker/build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ GetGcc() {
4343
}
4444

4545
GetMcuBoot() {
46-
git clone https://github.com/JuulLabs-OSS/mcuboot.git "$TOOLS_DIR/mcuboot"
46+
git clone https://github.com/mcu-tools/mcuboot.git "$TOOLS_DIR/mcuboot"
4747
pip3 install -r "$TOOLS_DIR/mcuboot/scripts/requirements.txt"
4848
}
4949

0 commit comments

Comments
 (0)