For EXT_CSD_PART_CONFIG_ACC_BOOT<n> and possibly others with suffixes
we fail to create proper disk aliases (symlinks), which shows up as
g_dev_taste: make_dev_alias_p() failed (name=mmcsd0, error=17)
In this case we ended up with the followng two:
/dev/mmcsd0 -> sdda0 /dev/mmcsd1 -> sdda0boot1
Note that (i) it should be mmcsd0boot1 and not mmcsd1 and that
(ii) there is no mmcsd0boot0 (failed above as it tried to create a
second mmcsd0).
While in theory we do not need to handle all cases for the compat
scheme add the code for all of them.
This gives us:
/dev/mmcsd0 -> sdda0 /dev/mmcsd0boot0 -> sdda0boot0 /dev/mmcsd0boot1 -> sdda0boot1
MFC after: 3 days