LuK1337 changed the topic of #titandev to: Loliés! | *yiff* | https://libera.irclog.whitequark.org/titandev
<LuK1337> hm
<LuK1337> did stock just ship with CONFIG_CFI_CLANG unset?
<LuK1337> oh
<LuK1337> i just used wrong clang version
<LuK1337> so it discarded lto configs
<LuK1337> (actually i used wrong linker)
dweee has joined #titandev
<dweee> ok idk luca will care but, LuK1337 I don't know if you've seen it, but a shiton of exploits for cs have just dropped with a source release for a cheat https://github.com/ENRON-74/Harpoon/
<LuK1337> i don't even play that often
<dweee> tl;dr, boring was streaming, the cheat devs irl friend used it on him and he revealed his p2c will be releasing with it publicly
<dweee> fair enough
<LuK1337> it is some lagger?
<LuK1337> because that's what i see in clienthooks
<dweee> well if anyone wants to lag/crash MM/cooldown everyone in your game before it gets patched, have fun with it
<LuK1337> mm cooldown? whoa
<dweee> yes, a few exploits in there
<LuK1337> that's nice
<dweee> look up denzil on youtube, he's had it all this time
<LuK1337> tho mm cooldown sounds like a rce...
<LuK1337> unless it sends some stuff to GC instead
<dweee> uhh, it's just a lagger that times everyone out and then prevents peoole from reconnecting
<LuK1337> ah that's ok
<dweee> he's just automated it to work if you do .cooker in chat iirc
<LuK1337> .cooldowncooker
<LuK1337> or also .cooker
<LuK1337> no idea what's different
<LuK1337> xd
<LuK1337> i was wondering how anti vote kick works
<dweee> i'm in vc with the dev and he's just worried that he's gonna have legal issues so that's why he dropped source
<LuK1337> yeah...it just lags everyone
<dweee> yeah if you were wondering, these are the exploits that flaw/sharklaser have had so they're gonna have a surprise when they wake up
<luca020400> people really go far just for hacking games
<luca020400> here I am just hoping what I play gets an easy mode
<LuK1337> when m vendorimage is delayed by few minutes because of dirty kernel rebuild
<LuK1337> and adb remount shows that it can't be done because of checkpointing
<LuK1337> very nice
<LuK1337> totally not wasting my time
<luca020400> prebuilt kernel ftw
<luca020400> also suspend/resume breaks my desktop
<luca020400> not sure what breaks but tty goes crazy, some syscall don't work
<LuK1337> maybe we all need arm64 desktops
<hanetzer> I'd rather a ppc64 one :)
<luca020400> amdgpu works on arm64 so it's not that impossible
<luca020400> honestly a plain arm cpu with their fw stack would be great for desktop
<luca020400> kill injection!
<luca020400> hanetzer: is power10 avail now?
<luca020400> Q4 2021 for customers
<hanetzer> not that I've been made aware of. there's apparently some potential blob issues wrt ram init, which is the last place you want them
<luca020400> oh cool
<luca020400> ram init is a plague
<luca020400> what is this?
<dweee> This is the last I'll talk of it since it's off topic, but here's the official reupload https://github.com/Harpoon-Inc
<luca020400> dweee: was this channel ever on-topic?
<dweee> true, it's titandev after all
<LuK1337> luca020400: some verizon shit
<LuK1337> i uploaded change that should have disabled rtt
<LuK1337> but it didn't
<luca020400> but that they mean with RTT?
<LuK1337> lol
<LuK1337> real time talk
<LuK1337> or real time text
<LuK1337> something along these lines
<LuK1337> dweee: this channel has no topic
<LuK1337> so talk about whatever you wish
<luca020400> And if we were to follow the topic it would be bad
<LuK1337> how can i copy selected modules to recovery ramdisk
<LuK1337> without loading them
<LuK1337> BOARD_VENDOR_RAMDISK_KERNEL_MODULES requires full paths...
<LuK1337> ( i think )
<luca020400> it does
<LuK1337> and i can't get path to out/.../vendor/lib/modules from boardconfig
<luca020400> BOARD_VENDOR_RAMDISK_KERNEL_MODULES vs BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD
<LuK1337> i want to use BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD
<LuK1337> to load touchscreen+charging
<LuK1337> i can't use BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD
<LuK1337> because i need to lazy load op_cmdline before everything
<LuK1337> as otherwise it's initialized with empty cmdline...
<luca020400> you can always make a modules.load?
<LuK1337> BOARD_VENDOR_RAMDISK_RECOVERY_KERNEL_MODULES_LOAD creates modules.load.recovery for me
<LuK1337> but modules are nowhere
<luca020400> hmm
<luca020400> is depmod running at all?
<LuK1337> and if i use BOARD_VENDOR_RAMDISK_KERNEL_MODULES_LOAD
<LuK1337> then i get modules.load in ramdisk
<LuK1337> and i don't want that
<LuK1337> as it'll load everything very early
<LuK1337> skipping my scripts
<LuK1337> i have modules already compiled in two places
<luca020400> well move them to vendor?
dweee has quit [Ping timeout: 248 seconds]
<LuK1337> move what
<LuK1337> here's example module in 4 places
<LuK1337> it's in vendor and works fine in os
<LuK1337> but i want to load it in recovery
<LuK1337> but idk how to make it copy the module for me
<luca020400> hmm not sure how to differentiate them
<luca020400> I think you need to add some logic in kernel.mk
<luca020400> yikes
<luca020400> btw my laptop battery died for the first time, it reports -2% of capacity compared to before
<luca020400> it didn't enter suspend and sucked all of it
<LuK1337> +KERNEL_MODULES_OUT := $(OUT_DIR)/target/product/$(LINEAGE_BUILD)/vendor/lib/modules
<LuK1337> +BOARD_VENDOR_RAMDISK_KERNEL_MODULES := $(foreach m,$(strip $(shell cat $(COMMON_PATH)/modules.load.recovery)),$(KERNEL_MODULES_OUT)/$(m))
<LuK1337> quality
<luca020400> :ship_it:
<luca020400> someday we'll just make it use the aosp build system before the android build
<luca020400> because it's hell
<LuK1337> well...it still did exactly what i didn't want it to do
<LuK1337> it added everything to modules.load
<LuK1337> because fuck you, that's why.
<LuK1337> does qcacld module have to be named in a particular way?
<luca020400> ah it's still wrong?
<luca020400> wlan.ko iirc
<LuK1337> well it is wlan.ko and it's loaded
<LuK1337> but it's dead
<LuK1337> WIFI_DRIVER_DEFAULT := qca_cld3
<LuK1337> hm
<LuK1337> maybe that's why
<luca020400> not sure if module_name does something
<LuK1337> [ 174.805067] [20210527_23:30:44.825351]@1 init: Sending signal 9 to service 'qcomsysd' (pid 3832) process group...
<LuK1337> maybe i need qcomsysd
<LuK1337> xD
dweee has joined #titandev
<LuK1337> in fact i need to disable it
<LuK1337> so there's that
<LuK1337> or not
dweee has quit [Ping timeout: 272 seconds]
dweee has joined #titandev
dweee has quit [Ping timeout: 248 seconds]
dweee has joined #titandev
dweee has quit [Read error: Connection reset by peer]
dweee has joined #titandev
dweee has quit [Ping timeout: 265 seconds]
dweee has joined #titandev
dweee has quit [Ping timeout: 248 seconds]
dweee has joined #titandev
dweee has quit [Ping timeout: 244 seconds]
cehteh has quit [Ping timeout: 264 seconds]
dweee has joined #titandev
cehteh has joined #titandev
<whitekidney> LuK1337: i had to reboot the server
<LuK1337> ok
<cehteh> mhm would you miss me on freenode? :D i leave the channel there
<cehteh> freenode is broasting with "no users left" ... which is actually because everyone is on both networks
<LuK1337> I'll disconnect from it after it kicks me out the channel
<cehteh> it wont
<cehteh> i mean i am in plenty channels there still .. but i leave any channel that becomes useless
<LuK1337> it will
<LuK1337> on netsplit
dweee has quit [Read error: Connection reset by peer]
dweee has joined #titandev
dweee has quit [Ping timeout: 264 seconds]
dweee has joined #titandev
dweee has quit [Ping timeout: 264 seconds]
dweee has joined #titandev
dweee has quit [Ping timeout: 264 seconds]
tBOT_ has joined #titandev
tBOT_ has quit [Client Quit]
tBOT_ has joined #titandev
tBOT has quit [Read error: Connection reset by peer]
tBOT_ is now known as tBOT
dweee has joined #titandev
dweee has quit [Read error: Connection reset by peer]
cehteh has quit [Ping timeout: 264 seconds]
cehteh has joined #titandev