Goofed Home

Linux Still Working To Clean Up The Realtek RTL8723BS 802.11b/g/n WiFi Driver In 2026

$$954
https://toast.ooo/u/cm0002 posted on Feb 19, 2026 17:32

Introduced to the Linux 4.12 kernel’s staging area back in 2017 was the Realtek RTL8723BS WiFi driver. The Realtek RTL8723BS is an 802.11 b/g/ SDIO WLAN adapter with Bluetooth 4.0 connectivity too. In the nearly decade since this driver was added to the staging area, it’s continued to be cleaned up and with the Linux 7.0 merge window there is yet again a lot of work on cleaning up this WiFi driver for the old Realtek hardware.

It’s not over the finish line and still in the kernel’s staging area, but the Realtek RTL8723BS driver continues seeing more clean-ups. This driver started out as based on Realtek downstream vendor driver code and cleaned up in the year since by various kernel developers. As for its popularity, the RTL8723BS did appear in the original Intel Compute Stick as well as various Intel Atom and ARM devices.

https://toast.ooo/post/12358395

$$994
https://lemmy.dbzer0.com/u/fuckwit_mcbumcrumble posted on Feb 19, 2026 18:08
In reply to: https://toast.ooo/post/12358395

We should just outlaw realtek. The world would be a better place.

https://lemmy.dbzer0.com/comment/24513866
$$1702
https://programming.dev/u/MadhuGururajan posted on Feb 20, 2026 16:50
In reply to: https://toast.ooo/post/12358395

So I would like to know from experts working on Realtek or those who are following closely enough to understand the details what exactly does the “Big HAL layer” entail interms of so much refactoring?

From what I can understand it looks like most of the vendor released stuff is not inline to the design of the kernel and thus it works in a different manner than the rest of the kernel.

But then, why wouldn’t experts try to clean room implement the driver by mimicking the official driver?

https://programming.dev/comment/22299747

Conversation

$$1186
https://sh.itjust.works/u/the_crotch posted on Feb 19, 2026 23:52
In reply to: https://lemmy.world/comment/22196911

So you’ve never been to their website?

https://sh.itjust.works/pictrs/image/f10cc825-4c46-482b-a863-31dda91a5205.png

https://sh.itjust.works/comment/23870571

4 posts in conversation

$$1654
https://sh.itjust.works/u/the_crotch posted on Feb 20, 2026 15:40
In reply to: https://lemmy.world/comment/22249147

According to the wayback machine that’s been their tagline for at least 15 years

Feb 19 2011

Feb 19 2011

https://sh.itjust.works/comment/23882096
$$1666
https://lemmy.world/u/MehBlah posted on Feb 20, 2026 16:03
In reply to: https://sh.itjust.works/comment/23882096

I guess I just never paid attention to it. My usage of debian goes back thirty years.

https://lemmy.world/comment/22251569

Does anyone have a good suggestion for a markdown editor?

$$211
https://sopuli.xyz/u/sbeak posted on Feb 18, 2026 14:52

My main requirement is that I am using Syncthing to sync my notes from my Android phone, which uses Quillpad. Quillpad is amazing and looks super nice, and functional too, but all the notes are in one big folder rather than being subdivided by notebook. So I require a markdown editor that can create “notebooks” but don’t change the folder structure of the notes (I tested putting notes in subfolders, and quillpad thought the notes were deleted. Silly Quillpad!)

So the notebooks/similar organisation of notes needs to be specific to the app and should not change the folder structure. I would prefer if the app is open-source too, and something that fits with my desktop (KDE Plasma) would be cool too :D

This rules out Obsidian (which puts notes in a folder structure. Obsidian is great, but won’t sync well with Quillpad), Joplin won’t work either.

I am using EndeavourOS with KDE Plasma

https://sopuli.xyz/post/41359418

74 posts in conversation

$$1566
https://programming.dev/u/clifmo posted on Feb 20, 2026 13:27
In reply to: https://sopuli.xyz/post/41359418

https://youtu.be/XRpHIa-2XCE

A 30 minute video about opening up a text box and typing something into it for later, made for people who watch videos about doing that rather than just getting work done.

00:29 Requirements 4:10 Zettlr, VNote, and nb 5:48 Zim 7:50 QOwnNotes 12:31 The end of pretending this is about productivity 14:48 Emacs 21:18 Neovim 25:59 It never ends 27:12 Kakoune, Helix, Vis, Neatvi (I don’t use these)

https://programming.dev/comment/22295929
$$1571
https://lemmy.ca/u/melsaskca posted on Feb 20, 2026 13:46
In reply to: https://sopuli.xyz/post/41359418

I use paper scribblers and a pen or pencil, plus an index book so I can compile what I am entering, but I’m not in any hurry though. /s

https://lemmy.ca/comment/21806179

Conversation

$$95
https://lemmy.curiana.net/u/ExLisper posted on Feb 18, 2026 07:31
In reply to: https://programming.dev/comment/22248104

You expect everyone to pay for free software?

https://lemmy.curiana.net/comment/858710

4 posts in conversation

$$334
https://feddit.nl/u/quick_snail posted on Feb 18, 2026 17:40
In reply to: https://programming.dev/comment/22248104

You should probably read the article.

https://feddit.nl/comment/23365291
$$1402
https://lemmy.ml/u/tastemyglaive posted on Feb 20, 2026 07:32
In reply to: https://programming.dev/comment/22248104

It’s almost as if the time economy of programmers is managed by their employers, and moral appeals have no effect on that dynamic

https://lemmy.ml/comment/24074137

Conversation

$$1042
https://discuss.tchncs.de/u/ken posted on Feb 19, 2026 19:37
In reply to: https://piefed.blahaj.zone/comment/3383154

Sounds like clients could do a better job in merging cross-posts and making it easier to filter them from the view.

https://discuss.tchncs.de/comment/24032223

foreach - Bash alias to execute command on each line

$$769
https://toast.ooo/u/cm0002 posted on Feb 19, 2026 14:28

Just wanted to share an alias I have in use and found it useful again. It’s a simple wrapper around xargs, which I always forget how to use properly, so I set up an alias for. All it does is operate on each line on stdout.

The arguments are interpreted as the command to execute. The only thing to remember is using the {} as a placeholder for the input line. Look in the examples to understand how its used.

# Pipe each line and execute a command. The "{}" will be replaced by the line.
#
# Example:
#   cat url.txt | foreach echo download {} to directory
#   ls -1 | foreach echo {}
#   find . -maxdepth 2 -type f -name 'M*' | foreach grep "USB" {}
alias foreach='xargs -d "\n" -I{}'

Useful for quickly operating on each line of a file (in example to download from list of urls) or do something with any stdout output line by line. Without remembering or typing a for loop in terminal.

OC by @thingsiplay@lemmy.ml

https://toast.ooo/post/12355874

6 posts in conversation

$$983
https://monero.town/u/GrumpyBike1020 posted on Feb 19, 2026 17:57
In reply to: https://sh.itjust.works/comment/23861031

See the link in this users profile which explains why

https://monero.town/comment/7865218
$$1034
https://sh.itjust.works/u/wildbus8979 posted on Feb 19, 2026 19:04
In reply to: https://monero.town/comment/7865218

I know why. The OP decided to post where they decided to post, it’s frankly unethical to steal OP’s shit and not crosspost properly.

https://sh.itjust.works/comment/23865753

Linux 7.0 Retires The IBM Mwave ACP Modem Driver Used By Some 1990s ThinkPads

$$967
https://toast.ooo/u/cm0002 posted on Feb 19, 2026 17:43

Long past due for retirement, the Linux 7.0 kernel has removed the obsolete Mwave driver for the 3780i ACP Modem found in some Pentium II era IBM ThinkPads from the 1990s.

The Mwave Linux driver was for the 3780i ACP Modem found in some ThinkPads. Found on the likes of the IBM ThinkPad 600E, 600, and 770 these modems allowed 56K connectivity. IBM wrote the Mwave kernel driver and the associated user-space software for it back in the 1990s.

https://toast.ooo/post/12358549

6 posts in conversation

$$1023
https://feddit.org/u/Ooops posted on Feb 19, 2026 18:45
In reply to: https://feddit.org/comment/11613607

I would assume people running a modern kernel on an orignal 32-bit first generation pentium machine don’t need such an excuse as they have to do in constantly already…

https://feddit.org/comment/11613946
$$1032
https://feddit.org/u/a14o posted on Feb 19, 2026 18:56
In reply to: https://feddit.org/comment/11613946

Yes, should have said “to have another excuse”

https://feddit.org/comment/11614141

System76 Preparing To Introduce Redesigned Thelio Hardware

$$955
https://toast.ooo/u/cm0002 posted on Feb 19, 2026 17:33

Linux hardware vendor System76 has begun teasing a redesign of their Thelio chassis that is used by their modern desktops and workstations. Helping distinguish System76 from other Linux desktop/PC vendors has been their custom-engineered, built-in-the-USA enclosures and now they are preparing to launch a next-generation design.

System76 CEO Carl Richell posted on X that “Ground-up redesigned @system76 Thelio hardware coming soon.”

Carl commented that it’s been ten months of design and engineering, over 16,000 durability test runs, and over 250 hours of thermal testing and optimization. It will be very interesting to see what they’ve managed to achieve with the redesign given how well the Thelio hardware has held up over the years in our continued testing and all-around being extremely well built and reliable. We’ve tested the likes of the Thelio Major and ARM-powered Thelio Astra.

https://toast.ooo/post/12358398

Conversation

$$661
https://feddit.org/u/mech posted on Feb 19, 2026 11:49
In reply to: https://sopuli.xyz/comment/21946869

Picture someone who says they could never become vegetarian because they love bacon too much.
It would be a lot better if they went vegetarian + bacon, than if they kept eating meat for every meal, thinking they can’t be vegetarian anyway.

https://feddit.org/comment/11607128

$$898
https://sopuli.xyz/u/teawrecks posted on Feb 19, 2026 16:43
In reply to: https://feddit.org/comment/11607128

I agree. But you see how that’s besides the point, right?

https://sopuli.xyz/comment/21986748

Conversation

$$1
https://programming.dev/u/onlinepersona posted on Feb 18, 2026 02:50
In reply to: https://piefed.social/comment/10181252

I read that. How many users do they have? 47k seems like a lot but how many devs does that really pay for? The answer is obviously “not enough”. Otherwise they wouldn’t be talking about dev pressure.

https://programming.dev/comment/22248161

5 posts in conversation

$$665
https://lemmy.world/u/asdfasdfasdf posted on Feb 19, 2026 11:51
In reply to: https://programming.dev/comment/22263329

That amount of money is one developer full time maybe

$564,000 / year??? I’d think definitely two, maybe three.

https://lemmy.world/comment/22226875
$$894
https://midwest.social/u/RamenJunkie posted on Feb 19, 2026 16:39
In reply to: https://lemmy.world/comment/22226875

Yeah, feels like 3-4.

https://midwest.social/comment/22788211
Create New Post