Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Cherry pick patches for building Xen target
    The additional commits below seem to be already merged into u-boot repository:

Code Block
$ cd u-boot
$ git fetch https://android.googlesource.com/platform/external/u-boot refs/changes/82/2651382/1 && git cherry-pick FETCH_HEAD
$ git fetch https://android.googlesource.com/platform/external/u-boot refs/changes/83/2651383/1 && git cherry-pick FETCH_HEAD
$ git fetch https://android.googlesource.com/platform/external/u-boot refs/changes/84/2651384/1 && git cherry-pick FETCH_HEAD
$ git fetch https://android.googlesource.com/platform/external/u-boot refs/changes/85/2651385/1 && git cherry-pick FETCH_HEAD

...

  1. Cherry out Cuttlefish branch for support Xen virtual machine:
    In the instruction step below the branch xen_aosp_maintenance_20231108 should be rebased on top of main or master branch rather than being checked-out (at the time of writing this note, 20th of December 2023).

Code Block
$ cd device/google/cuttlefish
$ git remote add aosp_xen https://gitlab.com/Linaro/blueprints/automotive/xen-aosp/cuttlefish.git
$ git fetch aosp_xen
$ git checkout -b xen_aosp_maintenance_20231108 aosp_xen/xen_aosp_maintenance_20231108 

...