Skip to content

Update bullseye submodule and cloning to https - #9

Open
Doom4535 wants to merge 3 commits into
ev3dev:ev3dev-bullseyefrom
retroros:ev3dev-bullseye
Open

Update bullseye submodule and cloning to https#9
Doom4535 wants to merge 3 commits into
ev3dev:ev3dev-bullseyefrom
retroros:ev3dev-bullseye

Conversation

@Doom4535

Copy link
Copy Markdown

Notes:

  • This is because GitLab has removed support for the insecure 'git://' protocol

@Doom4535

Copy link
Copy Markdown
Author

The same sort of fix is needed for the other branches as well, it is likely easier to cherry-pick across all the branches

Notes:
* This is because GitLab has removed support for the insecure 'git://'
protocol
Notes:
1. It seems like something changed in CMakes build behavior here
Notes:
1. This is likely from the change here:
ev3dev/grx@28b0686#diff-02a99699ea96689f62c694983532fedec8e3b84b46ccc23d10f1ced786c82473L329
where grx is updated to take a uint8[] instead of a uint8*[] for
Context? new(); the commit mentions that this is a breaking change
that removes support for the unused planar memory objects.
Comment threadsrc/ui/Screen.vala
Comment on lines +177 to 179
uint8 addr[4];
addr[0] = *context_mem_addr;
context = Context.new_full (mode, width, height, addr);

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
uint8 addr[4];
addr[0] =*context_mem_addr;
context =Context.new_full (mode, width, height, addr);
context =Context.new_full (mode, width, height, context_mem_addr);

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants

@Doom4535@dlech