Hi, I had a similar problem, that is due to having salvaged the original oreo-x86 manifest for OSDN
that allowed naming conventions as per AOSP sources, with "/" in project URLs, while
github.com and
sourceforge.net do not allow "/" in project URLs, in addition the
github.com replaces "-" when using their mirroring procedure, while
sourceforge.net android-x86 repo replaced "/" with "_"
In order to be able to repo sync with android-x86-mirror
the file .repo/manifests/android-x86.xml file in manifests requires adjustments:
The following changes are necessary only to android-x86 forked projects,
which are the ones after <!-- From Android-x86 repositories -->
2) use name="kernel" instead of "kernel/common"
2) remove 'platform/' prefix
3) replace '/' with '-'
At that point repo sync will work
2) use name="kernel" instead of "kernel/common"
2) remove 'platform_' prefix
3) replace '/' with '_'