diff options
| author | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-29 17:15:18 +0200 |
|---|---|---|
| committer | Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org> | 2021-09-29 17:15:47 +0200 |
| commit | 68f04bca7408ccea109f281923ad0170f02cb008 (patch) | |
| tree | 636f73787717070200ecb6a83b70d6aa453a7a69 | |
| parent | bb642b0624d810fc2ed558b49ccc9913bae9fdf8 (diff) | |
| download | device_samsung_i9300-68f04bca7408ccea109f281923ad0170f02cb008.tar.gz device_samsung_i9300-68f04bca7408ccea109f281923ad0170f02cb008.tar.bz2 device_samsung_i9300-68f04bca7408ccea109f281923ad0170f02cb008.zip | |
fstab: Add misc partition
In Replicant 6 we have the following in
rootdir/fstab.smdk4x12 in device/samsung/i9300:
/dev/block/platform/dw_mmc/by-name/OTA /misc emmc defaults defaults
And without this patch, the Replicant 11 recovery complains
about a missing /misc partition.
Once the recovery is booted we see the following on the
bottom of the screen on the GT-I9300:
E:Failed to clear BCB message: failed to
find /misc partition
And when we select "Apply update from ADB" in the menu, we
have the following on the bottom of the screen:
E:Failed to clear BCB message: failed to
find /misc partition
E:Failed to WriteUpdateInProgress: faile
d to find /misc partition
Now send the package you want to apply
to the device with "adb sideload <filena
me>"...
With this fix all these warnings disappear.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
| -rw-r--r-- | fstab.smdk4x12 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fstab.smdk4x12 b/fstab.smdk4x12 index 1f55a4f..303c47e 100644 --- a/fstab.smdk4x12 +++ b/fstab.smdk4x12 @@ -20,4 +20,5 @@ # Recovery /dev/block/platform/soc/12550000.mmc/by-name/BOOT /boot emmc defaults recoveryonly +/dev/block/platform/soc/12550000.mmc/by-name/OTA /misc emmc defaults recoveryonly /dev/block/platform/soc/12550000.mmc/by-name/RECOVERY /recovery emmc defaults recoveryonly |
