Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c379bfc9 authored by Nishith  Khanna's avatar Nishith Khanna
Browse files

manifest: Initialize /e/ manifest

parent 76318de6
Loading
Loading
Loading
Loading

README.md

0 → 100644
+30 −0
Original line number Diff line number Diff line
/e/OS
===========

Getting started
---------------

To get started with /e/OS, you'll need to get familiar with [Source Control Tools](https://source.android.com/setup/develop).

To initialize your local repository using the /e/OS trees, use a command like this:
```
repo init -u https://gitlab.e.foundation/e/os/android.git -b a16 --git-lfs
```
Then to sync up:
```
repo sync
```
Please see the [/e/ documentation](https://doc.e.foundation/how-tos/#build-e-for-a-device) for building instructions, by device.


Submitting patches
------------------
Patches are always welcome! Please submit your patches by opening a Merge Request on the project repository you want to contribute!


Continuous Integration
--------

All supported devices are built as new versions are committed to ensuring that the source trees remain buildable.

Builds produced can be downloaded from the [official website](https://doc.e.foundation/devices/).

README.mkdn

deleted100644 → 0
+0 −36
Original line number Diff line number Diff line
LineageOS
===========

Getting started
---------------

To get started with Android/LineageOS, you'll need to get familiar with [Source Control Tools](https://source.android.com/setup/develop).

To initialize your local repository using the LineageOS trees, use a command like this:
```
repo init -u https://github.com/LineageOS/android.git -b lineage-23.0 --git-lfs
```
Then to sync up:
```
repo sync
```
Please see the [LineageOS Wiki](https://wiki.lineageos.org/) for building instructions, by device.


Submitting patches
------------------
Patches are always welcome! Please submit your patches via LineageOS Gerrit!

Simply follow our guide on [how to submit patches](https://wiki.lineageos.org/submitting-patch-howto.html).

To view the status of your and others' patches, visit [LineageOS Gerrit Code Review](https://review.lineageos.org/).


Buildbot
--------

All supported devices are built weekly and periodically as changes are committed to ensure the source trees remain buildable.

You can view the current build statuses at [LineageOS Buildkite](https://buildkite.com/lineageos).

Builds produced weekly by the buildbot can be downloaded from [LineageOS downloads](https://download.lineageos.org/).
+2 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
<manifest>

  <remote  name="github"
           fetch=".."
           fetch="https://github.com"
           review="review.lineageos.org" />

  <remote  name="private"
@@ -1011,4 +1011,5 @@
  </project>

  <include name="snippets/lineage.xml" />
  <include name="snippets/eos.xml" />
</manifest>

snippets/eos.xml

0 → 100644
+17 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<manifest>

  <remote  name="e"
           fetch="https://gitlab.e.foundation"
           revision="refs/heads/a16"/>

  <remote  name="e-priv"
           fetch="ssh://git@gitlab.e.foundation:2222"
           revision="refs/heads/a16"/>

  <!-- Remove projects -->
  <remove-project path="android" name="LineageOS/android" />

  <!-- /e/OS additions -->
  <project path="android" name="e/os/android" remote="e" />
</manifest>