this post was submitted on 21 Aug 2023
127 points (91.0% liked)

No Stupid Questions

35258 readers
1649 users here now

No such thing. Ask away!

!nostupidquestions is a community dedicated to being helpful and answering each others' questions on various topics.

The rules for posting and commenting, besides the rules defined here for lemmy.world, are as follows:

Rules (interactive)


Rule 1- All posts must be legitimate questions. All post titles must include a question.

All posts must be legitimate questions, and all post titles must include a question. Questions that are joke or trolling questions, memes, song lyrics as title, etc. are not allowed here. See Rule 6 for all exceptions.



Rule 2- Your question subject cannot be illegal or NSFW material.

Your question subject cannot be illegal or NSFW material. You will be warned first, banned second.



Rule 3- Do not seek mental, medical and professional help here.

Do not seek mental, medical and professional help here. Breaking this rule will not get you or your post removed, but it will put you at risk, and possibly in danger.



Rule 4- No self promotion or upvote-farming of any kind.

That's it.



Rule 5- No baiting or sealioning or promoting an agenda.

Questions which, instead of being of an innocuous nature, are specifically intended (based on reports and in the opinion of our crack moderation team) to bait users into ideological wars on charged political topics will be removed and the authors warned - or banned - depending on severity.



Rule 6- Regarding META posts and joke questions.

Provided it is about the community itself, you may post non-question posts using the [META] tag on your post title.

On fridays, you are allowed to post meme and troll questions, on the condition that it's in text format only, and conforms with our other rules. These posts MUST include the [NSQ Friday] tag in their title.

If you post a serious question on friday and are looking only for legitimate answers, then please include the [Serious] tag on your post. Irrelevant replies will then be removed by moderators.



Rule 7- You can't intentionally annoy, mock, or harass other members.

If you intentionally annoy, mock, harass, or discriminate against any individual member, you will be removed.

Likewise, if you are a member, sympathiser or a resemblant of a movement that is known to largely hate, mock, discriminate against, and/or want to take lives of a group of people, and you were provably vocal about your hate, then you will be banned on sight.



Rule 8- All comments should try to stay relevant to their parent content.



Rule 9- Reposts from other platforms are not allowed.

Let everyone have their own content.



Rule 10- Majority of bots aren't allowed to participate here.



Credits

Our breathtaking icon was bestowed upon us by @Cevilia!

The greatest banner of all time: by @TheOneWithTheHair!

founded 1 year ago
MODERATORS
 

As a point of comparison, Microsoft ships its OS across a variety of manufacturers and largely keeps it maintained across them (give or take some exceptions like enterprise environments & the like).

Even unlocked Android phones purchased independently of carriers have inconsistent lengths of support, so it doesn't seem to be entirely a result of carriers, so...What happened here?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 2 points 1 year ago (3 children)

There is something off with your reply. GNU/Linux exists and works fine with different kind of hardware while being FOSS.

[–] [email protected] 3 points 1 year ago

That's because GNU/Linux uses open, generic interfaces to communicate with (often fairly generic) hardware.

Android/Linux usually uses specialised closed black-box interfaces to communicate with hardware and those usually only work on one specific device or at best a small family of devices.
This model is dictated by the vendors of the hardware.

[–] [email protected] 1 points 1 year ago (1 children)

Yes, but the question only spoke about Windows and Android so I tried not to dive too deep into other things... I assumed the community is for simple and to the point answers...

[–] [email protected] 0 points 1 year ago (1 children)

But your answer could be interpreted as "a FOSS OS can never maintained for a big variety of hardware over a long life cycle" which would be totally wrong. Android's driver situation might be shit but that has nothing to do with an "open system" vs a "closed system". My knowledge regarding this topic is not deep enough to give a perfect answer but I think other posts here sound more plausible.

[–] [email protected] 1 points 1 year ago

I don't wanna sound too defensive but I did say this

That takes considerable effort, although if they chose to focus on a select few devices every year, they'd be able to do so.

I agree that I can reword it to make that clear, but I don't think, nor do I hope anyone will make that conclusion about FOSS...

[–] [email protected] 1 points 1 year ago (2 children)

Right? And also two things:

First, android is FOSS the same as Darwin (the system under iOS) is. Apple puts its proprietary drivers, ui, and other apps the same as android phone vendors do.

An second, Free Software/Open Source doesn't mean that you have to ship the phone with all the code anyone pushes. You have control of your repository. You can pay developers and only include the software the build. FOSS means that the user of the software has access to the source code, as well as other rights like modifying or redistributing it.

I see in a lot of discussion about free software some people say things like 'the code is open to everyone so you don't know what they can put there' as if there were no filter or anything

[–] [email protected] 1 points 1 year ago

I don't understand...

First, android is FOSS the same as Darwin (the system under iOS) is. Apple puts its proprietary drivers, ui, and other apps the same as android phone vendors do.

I made sure to mention AOSP since Pixel UI is the proprietary version. Plus, even if Android contains GMS and whatnot, I mentioned that since it's open source, you can see what you like or do not like.

I'll try to reword my comment later tho... It can definitely do with a bit more context. I just wanted to make sure it was simple to understand for someone who was asking on nostupidquestions. (How do we link a community on Lemmy? Like on reddit we used to type r/whatever.)

[–] [email protected] 1 points 1 year ago* (last edited 1 year ago)

android is FOSS the same as Darwin (the system under iOS) is.

Not at all. The Darwin kernel (XNU) is semi-FOSS (as in: Apple throws source code over the fence every year or two) but nearly none of the rest is.

Not only is this practice not even close to Linux' fully open development model, XNU is quite a minimal kernel; it's more of a microkernel design. You need the other parts in order to have a usable system.

The Android userspace is fully FOSS. Android Framework, system libraries, system services and even the UI are fully FOSS with a fairly open development model.
I patch my Android framework to disallow apps from ever dictating how my screen should be rotated for example.

The Evil Corp. has been pulling more functionality into the proprietary GMS crap lately but it's not very many features and alternatives exist for FOSS apps (i.e. Firebase push notifications: UnifiedPush).

OEMs take this fully open code and might make changes; mostly of cosmetic nature. Those usually aren't published.
Many Vendors ship the regular Android userspace with little to no modification however.

Android FOSS but not Libre. Don't confuse the two.

Only the kernel of Android is Libre. (XNU is not Libre btw.)