Jim Huang

Results 411 comments of Jim Huang

[Linux 6.1 is officially promoted to be an LTS kernel](https://www.phoronix.com/news/Linux-6.1-LTS-Official), and we shall re-target v6.1 compatibility.

> Just take some notes here. For 6.1.11 and gcc (GCC) 12.2.1 20230201, I got the following compile error. > ``` > examples/kbleds.c:64:55: error: ‘struct tty_driver’ has no member named...

Exactly, they are confusing. A pseudo{terminal,tty}, or PTY is a pair of pseudo-device endpoints which establish asynchronous, bidirectional communication IPC channel (with two ports) between two or more processes. An...

> According to https://github.blog/changelog/2024-01-08-subversion-has-been-sunset/ , Github has no longer support subversion protocol from 2024/01/08, the following bash commands in `cmsis.mk` don't work now. We can use shallow git submodule instead.

> There'll be errors occur when having an input like this: `a aaa a` Will refine the git commit messages after solving this issue.(solved) Would you continue working on this...

I would like to ask @jychen0611 to rework this pull request.

[Raizo62/vwifi](https://github.com/Raizo62/vwifi) simulates Wi-Fi (802.11) between Linux Virtual Machines. * It can be used in Hypervisors (GNS3, QEmu, Virtualbox, VMware, Hyper-V, ...) * The Wireless emulator uses the mac80211_hwsim linux driver...

It appears that this repository has not been maintained for years. You might want to consider trying [simplefs](https://github.com/sysprog21/simplefs) as an alternative. The latter supports Linux 6.x kernels.

The seven rules of a great Git commit message 1. Separate subject from body with a blank line. 2. Limit the subject line to 50 characters. 3. Capitalize the subject...

> 2. For denoise process in the image, I find that light side of edge is ignored in the original implementation . > The `CLAMP2BYTE` directly discard the negative value...