motorola-cedric: Add framebuffer patch.
This patch fixes Xorg. Adapted from the Xiaomi A1.
Merge request reports
Activity
Two issues:
- Please fix the git history, so it is based on current master. Do not "git merge master", but instead create a new branch that is based on the official master branch, e.g. with
git checkout -b my-new-branch; git reset --hard origin/master
, assuming that origin is the official origin. Then make your change on top of that. If you get stuck with that, please ask in the chat. - The pkgrel of your linux package needs to be increased.
Thanks for the MR @Hacker1245!
By Oliver Smith on 2019-01-31T07:47:05
- Please fix the git history, so it is based on current master. Do not "git merge master", but instead create a new branch that is based on the official master branch, e.g. with
@ollieparanoid So do I need to make a new MR?
By Hacker1245 on 2019-01-31T13:33:36
Step by step it would be something like this (untested, please try it and ask the nice folks in IRC/matrix for help if needed, so we don't get stuck here and can merge your nice patch):
- Run
git remote -v
and note which remote name the official repository has, and which remote name your fork has (one of them is probably called "origin", just look at the listing it gives you). I'll call them "upstream" and "fork" in this post, please replace these two words with the appropriate names.
- a) If you do not have the "upstream" remote added yet, add it now:
git remote add -f upstream https://gitlab.postmarketos.org/postmarketos/pmaports.git
- b) If you already have the "upstream" remote, fetch it from the server to get the latest commits:
git fetch upstream
- Make sure you have checked out your
device/motorola-cedric
branch:git checkout device/motorola-cedric
- Let's make a backup:
git checkout -b backup
(this branch is now exactly the same as your other branch) - Let's go back to the branch of this merge request:
git checkout device/motorola-cedric
- Put this branch at the same position as
upstream/master
(be careful, only do this if you have made a backup like in step 4.):git reset --hard upstream/master
- Make your changes again just like in this diff (and increase the pkgrel of your linux package)
- Commit your changes:
git commit
- Force-push this branch:
git push --force
By Oliver Smith on 2019-02-01T07:02:32
- Run
mentioned in issue wiki#26 (closed)
By Oliver Smith on 2019-02-01T07:04:11
added 15 commits
-
292621f9...9be5be71 - 14 commits from branch
postmarketOS:master
- 67600b3c - Fix Git history on branch
By Hacker1245 on 2019-02-01T17:45:42
-
292621f9...9be5be71 - 14 commits from branch
@ollieparanoid Everything is done
By Hacker1245 on 2019-02-01T20:31:53
added 1 commit
- 43464026 - motorola-cedric: fix X11 framebuffer (!187 (merged))
By Oliver Smith on 2019-02-03T01:23:34
mentioned in commit 862a02bd
By Hacker1245 on 2019-02-14T19:42:53
mentioned in commit 43464026
By Hacker1245 on 2019-02-19T17:40:20