Skip to content
Snippets Groups Projects
Unverified Commit 8756674a authored by knuxify's avatar knuxify Committed by Oliver Smith
Browse files

device-odroid-hc2: Force MBR/msdos partition table type

GPT paritions seem to interfere with the firmware baked into the SD card image;
both U-Boot and various Linux tools report the GPT partition table as broken
and fall back to the backup table. Notably, this makes the card difficult to
mount in another device. "Fixing" the partition table makes it refuse to boot.

Force the msdos partition type in deviceinfo to fix this.

Part-of: !6342
parent ed550137
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,8 @@
pkgname=device-odroid-hc2
pkgdesc="ODROID HC2"
pkgver=1
pkgrel=1
pkgver=2
pkgrel=0
url="https://postmarketos.org"
license="MIT"
arch="armv7"
......@@ -54,7 +54,7 @@ tools() {
}
sha512sums="
2aff998527535760d04b338d59976408a1d852ba38dfbdff305ec028030d419259cb1b9491b8e54a3621d147f9e8c1a797ed2a3784da7f25d2a92aa60882d027 deviceinfo
8eae54c131b8fc9c0e4cca6bbd8aaca72eb585c59d7794a97606b6061f98f87fb2b268fefc3113410e04e9e772d1f65d78e935de01a7679ba45ee60007961183 deviceinfo
228726f7afca55b02e4d452904d8490cf15957edd59cc87274d89c8589f9d15044db87a4413053243e66aa1b22860cfda052b5b95395effaf3aaf4d1770d3fd3 modules-initfs
7e5056f648a81d0784b1b3a641e2f79c22d2b570c7f00092236b301b1545eefca3a6a353c1ad308114f66ac68481f1491df42ca5c6f8297c76e5ee0fa7af178f uboot-script.cmd
09a2191dce5b5c8fdf80c4473d9773a51f2c633db51477f2f64983dd030d7800fd80999a228ec7efe3f9feafeba35902bff68cf95e6ae59048dc64424f402b63 install-rootfs-hdd.sh
......
......@@ -26,3 +26,5 @@ deviceinfo_flash_method="none"
deviceinfo_sd_embed_firmware="u-boot/odroid-hc2/bl1.bin:1,u-boot/odroid-hc2/bl2.bin:31,u-boot/odroid-xu3/u-boot.bin:63,u-boot/odroid-hc2/tzsw.bin:1503"
deviceinfo_sd_embed_firmware_step_size="512"
deviceinfo_boot_part_start="8192"
# Embedded firmware interferes with GPT partition table; force MBR instead
deviceinfo_partition_type="msdos"
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