-
aesthetikx
Assuming I have an IIC trackpad, how would I be able to verify that?
-
aesthetikx
In short, it doesn't work (tried iichid, synaptics, moused, etc etc) but I want to be able to at least identify the make and model of the trackpad so that I can research it more, or look at a driver.
-
sig`
dmesg
-
sig`
aesthetikx: using x11?
-
V_PauAmma_V
If dmesg (or "less /var/run/dmesg.boot") doesn't give any hint, you could also try "i2c -vs".
-
nwe
good morning, I looking to by a new laptop and wondering how is the support for FreeBSD on ThinkPad X1 Carbon Gen 13 ?
-
divlamir
nwe: you might have a look here, search for individual devices, like wifi, etc...
bsd-hardware.info
-
divlamir
I've never had one of those heterogenous cores Intel CPUs, sounds too messy. How is FreeBSD dealing with that?
-
vhBEYjqK4f
hello ?
-
ivy
hello
-
V_PauAmma_V
They left.
-
ivy
well, bye
-
mzar
no ALPHA3 yet?
-
ivy
mzar: the build was meant to start at 6AM UTC today, i'll see if Colin has an update when he's around
-
mzar
no problem for me, but I believed it's automated at least by at(1) pushing the commit ;-p
-
kevans
no, this is a manual process (to kickoff, at least)
-
ivy
we're talking about the actual release, right? the pkgbase builds for pkg.f.o are automated, but the release builds are manual
-
kevans
yes, pkgbase builds are automated, snapshot/release builds are all manual kickoff
-
kevans
(and there's no alpha3 until re@ pushes the name change commit)
-
mzar
yep
-
ivy
i really want to add an rm(1) flag to unset noschg if it's set
-
ivy
like super -f
-
CrtxReavr
ivy, step away from the rm(1) src.
-
ivy
CrtxReavr: would you object to that change? it wouldn't be enabled by default or by -f, it would be a new flag
-
mquin
--yes-i-really-mean-it
-
CrtxReavr
-
ivy
CrtxReavr: if this is a "unix philosophy" issue, we should also remove -f, since you can do the same thing with chmod
-
ivy
mquin: i believe, according to POSIX.1, this should be spelled "-Wyes-i-really-mean-it" :-)
-
ivy
or did they ditch the -W thing?
-
CrtxReavr
-f overrides permissions.
-
CrtxReavr
chflags modifies flags, which are an entirely different filesystem feature.
-
ivy
-f overrides permissions, which you can also do with chmod. --fix-the-schg-thing would override flags, which you can also do with chflags. what's the difference?
-
ivy
both are simply attributes of files which already have utilities to manage them
-
V_PauAmma_V
Isn't chflags restricted to securelevel <= 0 or something?
-
ivy
yes, but that's the default and is what most users use. if you increased securelevel you'll just get an error, same as -f as a non-root user
-
ivy
actually the default seems to be -1, but either way
-
CrtxReavr
V_PauAmma_V, also that.
-
ivy
mzar: <fbsdslack> <cperciva> ivy: ALPHA3 is coming as soon as I manage to head main to build
-
mzar
no rush, let the release process run undisturbed
-
divlamir
hm, immutable stuff is meant to be *difficult* to change
-
mzar
that will be really really sad if we can override schg with rm option, regardless to securelevel
-
mzar
but yes, it can happen
-
mzar
I am only a user, and this OS is driven by committers
-
mzar
so perhaps some users will appreciate and use new rm option
-
mzar
or maybe multiple -f
-
mzar
like -fff
-
mzar
rm -rfff /
-
ivy
i think that's a bad idea, because if you do something in a script like "RM='rm -f'" and then later do "$RM -f /some/file", it will change the behaviour in a surprising way
-
mzar
the whole idea isn't IMHO good, but rm -rfff / looks cool
-
divlamir
hope you don't have a twitchy inde xfinger
-
divlamir
or fall asleep with your hands over the keyboard like me the other day XD
-
mzar
if you script it, you can run rm -rf || chflags -R .. && rm -rf
-
kevans
i think you just want to spam a number of 'f' that 'feels right'
-
mzar
it's still doable
-
kevans
gate it on -fffffffff
-
mzar
that's even better
-
divlamir
and then prompt twice
-
divlamir
and then just use chflags bcs rm is so annoying
-
ivy
fwiw, the use case for this is that i frequently do something like "pkg -r /tmp/test install freebsd-set-base; rm -rf /tmp/test; pkg -r /tmp/set install freebsd-set-base" and currently this doesn't work because you need to chflags first
-
divlamir
easy to make a wrapper