Skip to content
Snippets Groups Projects
Commit 7dc6cbbc authored by Henrik Grimler's avatar Henrik Grimler Committed by Patrycja Rosa
Browse files

community/heimdall: upgrade to 2.1.0

And deprecate heimdall_wait_for_device.sh. Heimdall 2.1.0 has a new
option --wait which can be used instead of running
heimdall_wait_for_device.sh separately.

For full changelog, see
https://git.sr.ht/~grimler/Heimdall/refs/v2.1.0
parent 32dbf78e
No related branches found
No related tags found
1 merge request!69089community/heimdall: update to 2.1.0
Pipeline #247605 canceled
# Contributor: Bart Ribbers <bribbers@disroot.org> # Contributor: Bart Ribbers <bribbers@disroot.org>
# Maintainer: Henrik Grimler <henrik@grimler.se> # Maintainer: Henrik Grimler <henrik@grimler.se>
pkgname=heimdall pkgname=heimdall
pkgver=2.0.2 pkgver=2.1.0
pkgrel=0 pkgrel=0
pkgdesc="Free implementation of Samsung Galaxy devices flashing protocol" pkgdesc="Free implementation of Samsung Galaxy devices flashing protocol"
url="https://git.sr.ht/~grimler/Heimdall" url="https://git.sr.ht/~grimler/Heimdall"
...@@ -31,8 +31,8 @@ package() { ...@@ -31,8 +31,8 @@ package() {
} }
sha512sums=" sha512sums="
62849bfe7550214dd774efea65169673fa916f9d204000f793d995aed9def95fcc895c8913cd648f2397ab7fd154257e0394b78c180ed60d043c75858bac7c0a heimdall-v2.0.2.tar.gz 75c58cdfaa183e1a8a73127875f716cf168da3a109eefafc7bf1fe9573b9d716da23ff15d0df93474568a678a1b38e71611c745b688c3bc024e70672d921fdd6 heimdall-v2.1.0.tar.gz
271098ddcead6b4d1edd76ac208099506d67a7640b40c68ea4d8a6a85b6fa464b6024371004b02f1a3c4bdfc38415cf63f2fde97099e52db72903227d653b9b8 heimdall_flash_kernel.sh 271098ddcead6b4d1edd76ac208099506d67a7640b40c68ea4d8a6a85b6fa464b6024371004b02f1a3c4bdfc38415cf63f2fde97099e52db72903227d653b9b8 heimdall_flash_kernel.sh
ed6892ca86906473fcf84a4919396762e7a5639fdaf6360052764e1d522f52d6a1fd6137c9ebc3f5e096c489b8e8d38688740e96799a5426d87ed48bc68a9253 heimdall_flash_isorec_kernel.sh ec050b4f594f750eb3e3a5f80304bd5e692f2b2cabf4cd18e44543f930dc1290a5bb6d58d6c0d3589fcea8c69b74df8c240bc8fabbeb92369bdc2dc36a20ffb7 heimdall_flash_isorec_kernel.sh
45e742bb3a8c8d0bc6806a4e9f860b04f255cad72a8602c04759178284c66e0a90d3ea22249b5fa69de1dd1d6ecd6221adaa63d611aa20d2a54aa20868e86a9f heimdall_wait_for_device.sh e454a1c9d49177db0ae8adf55261f749ceca393d3800179db8b3591fff0b90e54448b3239e28e78dc67029406c29cba648b94764665d178b7fb53369ac58d937 heimdall_wait_for_device.sh
" "
...@@ -29,6 +29,6 @@ echo "Flash initramfs to the '$INITFS_PARTITION' partition (isorec-style) and" ...@@ -29,6 +29,6 @@ echo "Flash initramfs to the '$INITFS_PARTITION' partition (isorec-style) and"
echo "kernel to the '$KERNEL_PARTITION' partition" echo "kernel to the '$KERNEL_PARTITION' partition"
gunzip -c "$INITFS" | lzop > /tmp/initramfs.lzo gunzip -c "$INITFS" | lzop > /tmp/initramfs.lzo
cat "$KERNEL" "$DTB" > /tmp/vmlinuz-dtb cat "$KERNEL" "$DTB" > /tmp/vmlinuz-dtb
heimdall flash --"$INITFS_PARTITION" /tmp/initramfs.lzo --"$KERNEL_PARTITION" /tmp/vmlinuz-dtb heimdall flash --wait --"$INITFS_PARTITION" /tmp/initramfs.lzo --"$KERNEL_PARTITION" /tmp/vmlinuz-dtb
rm /tmp/initramfs.lzo rm /tmp/initramfs.lzo
rm /tmp/vmlinuz-dtb rm /tmp/vmlinuz-dtb
#!/bin/sh #!/bin/sh
# Simple wrapper, that makes heimdall behave more like fastboot # Simple wrapper, that makes heimdall behave more like fastboot
echo "DEPRECATION WARNING: heimdall_wait_for_device.sh is deprecated and will"
echo "be removed in a future version. Please use heimdall <action> --wait"
echo "instead."
echo "< wait for any device >" echo "< wait for any device >"
while ! heimdall detect > /dev/null 2>&1; do while ! heimdall detect > /dev/null 2>&1; do
sleep 1 sleep 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment