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

cryptroot-package: Pi Zero 2 W support #32

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 5 additions & 1 deletion cryptroot/cryptkey-fetch
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ if [ $(((0x$BOARD_INFO >> 23) & 1)) = 0 ]; then
# Pre-BCM2711
die "Chip not supported"
fi
if [ $(((0x$BOARD_INFO >> 12) & 15)) = 3 ]; then
if [ $(((0x$BOARD_INFO >> 12) & 15)) = 2 ]; then
# BCM3837
MAX_ROW_COUNT=8
ROW_COUNT=8
elif [ $(((0x$BOARD_INFO >> 12) & 15)) = 3 ]; then
# BCM2711
MAX_ROW_COUNT=8
ROW_COUNT=8
Expand Down
2 changes: 1 addition & 1 deletion cryptroot/nfpm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
name: "cryptroot-package"
arch: "arm64"
platform: "linux"
version: "1.0.1"
version: "1.1.0"
section: "default"
priority: "extra"

Expand Down
Binary file modified packages/Packages.gz
Binary file not shown.
Binary file removed packages/cryptroot-package_1.0.1_arm64.deb
Binary file not shown.
Binary file added packages/cryptroot-package_1.1.0_arm64.deb
Binary file not shown.