Versions Compared

Key

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

...

$ mkdir rdkb
$ cd rdkb
$ repo init -u https://code.rdkcentral.com/r/manifests -m rdkb.xml -b rdkb-20190206
$ repo sync -j4 --no-clone-bundle
  • The -m rdkb.xml in the build sequence above is important. If this is not specified, you will get an RDK-V tree by default.
  • The -b rdkb-20190206 in the build sequence above specifies the branch to use.
  • If you omit the -b rdkb-20190206 entirely, you will get the master (HEAD) of each component.
  • At any time, the community can build latest master by dropping the -b rdkb-20190206 option in the repo init command.

...