Skip to content

Commit

Permalink
Merge pull request #82 from LedgerHQ/xch/sdk-patch
Browse files Browse the repository at this point in the history
SDK: update with latest patches
  • Loading branch information
xchapron-ledger authored Sep 1, 2023
2 parents 52f8fb4 + 8b68129 commit 41c98c5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).


## [3.3.0] - 2023-09-01

### Changed
- Bump SDK versions

## [3.2.9] - 2023-08-18

### Changed
Expand Down
10 changes: 5 additions & 5 deletions lite/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,25 +60,25 @@ ARG GIT_SERVER=https://github.com/LedgerHQ
# Latest Nano S SDK
# Will switch to the unified SDK for next OS release.
ENV NANOS_SDK=/opt/nanos-secure-sdk
RUN git clone --branch v2.1.0-10 --depth 1 "$GIT_SERVER/nanos-secure-sdk.git" "$NANOS_SDK"
RUN git clone --branch v2.1.0-11 --depth 1 "$GIT_SERVER/nanos-secure-sdk.git" "$NANOS_SDK"

# Unified SDK
ENV LEDGER_SECURE_SDK=/opt/ledger-secure-sdk
RUN git clone "$GIT_SERVER/ledger-secure-sdk.git" "$LEDGER_SECURE_SDK"

# Latest Nano X SDK (OS nanox_2.2.2 => based on API_LEVEL 5)
ENV NANOX_SDK=/opt/nanox-secure-sdk
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOX_SDK" v5.5.0
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOX_SDK" v5.6.0
RUN echo nanox > $NANOX_SDK/.target

# Latest Nano S+ SDK (OS nanos+_1.1.0 => based on API_LEVEL 1)
ENV NANOSP_SDK=/opt/nanosplus-secure-sdk
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOSP_SDK" v1.7.0
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$NANOSP_SDK" v1.8.0
RUN echo nanos2 > $NANOSP_SDK/.target

# Latest Stax SDK (OS stax_1.3.0-rc1 => based on API_LEVEL 12)
# Latest Stax SDK (OS stax_1.3.0-rc3 => based on API_LEVEL 12)
ENV STAX_SDK=/opt/stax-secure-sdk
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$STAX_SDK" v12.2.0
RUN git -C "$LEDGER_SECURE_SDK" worktree add "$STAX_SDK" v12.3.0
RUN echo stax > $STAX_SDK/.target

# Default SDK
Expand Down

0 comments on commit 41c98c5

Please sign in to comment.