Skip to content

Commit b537585

Browse files
authored
Merge pull request #9 from jetkvm/dev
Release 0.2.3
2 parents 7e8dc51 + dc014e9 commit b537585

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ sudo apt-get install -y --no-install-recommends \
2222
build-essential \
2323
device-tree-compiler \
2424
gperf g++-multilib gcc-multilib \
25-
libnl-3-dev libdbus-1-dev libelf-dev libmpc-dev dwarves
25+
libnl-3-dev libdbus-1-dev libelf-dev libmpc-dev dwarves \
26+
bc openssl flex bison libssl-dev python3 python-is-python3 texinfo kmod cmake
2627
```
2728

2829
#### 2. Select the Board Configuration
@@ -152,7 +153,6 @@ All variables for customizing builds—like CPU architecture, boot medium, parti
152153
| **RK_PARTITION_CMD_IN_ENV** | Defines partition layouts for the firmware. |
153154
| **RK_APP_TYPE** | Determines which reference apps to include. |
154155
| **RK_ENABLE_WIFI** | Enables Wi-Fi functionality for the JetKVM firmware. |
155-
| **RK_ARCH** | `arm` or `arm64`: Defines whether to compile a 32-bit or 64-bit program. |
156156
| **RK_CHIP** | **Cannot be modified**: Different chips correspond to different SDKs. |
157157
| **RK_TOOLCHAIN_CROSS** | **Cannot be modified**: Defines the cross-compilation toolchain. |
158158

release.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22
set -eE
3+
set -o pipefail
34
set -x
45

56
export BUILD_VERSION=$(cat VERSION)
@@ -10,8 +11,9 @@ if rclone lsf r2://jetkvm-update/system/$BUILD_VERSION/ | grep -q .; then
1011
exit 1
1112
fi
1213

14+
./build.sh lunch BoardConfig_IPC/BoardConfig-EMMC-NONE-RV1106_JETKVM_V2.mk
1315
./build.sh
14-
sha256sum output/image/o | awk '{print $1}' > output/image/update_ota.tar.sha256
16+
sha256sum output/image/update_ota.tar | awk '{print $1}' > output/image/update_ota.tar.sha256
1517
sha256sum output/image/update.img | awk '{print $1}' > output/image/update.img.sha256
1618

1719
# Check if the version already exists

sysdrv/tools/board/rootfs/etc/shadow

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
root:$1$CG4fBfiy$kDbHZgV96oSz1PKVUjXG.1:10933:0:99999:7:::
1+
root:*:10933:0:99999:7:::
22
daemon:*:10933:0:99999:7:::
33
bin:*:10933:0:99999:7:::
44
sys:*:10933:0:99999:7:::

0 commit comments

Comments
 (0)