ghosalmartin | https://source.android.com/security/selinux/validate.html | 00:00 |
---|---|---|
ghosalmartin | hmm maybe we were using the wrong command to disable | 00:00 |
sledges | broke? | 00:01 |
ghosalmartin | yeha it attempted to look for selinux again | 00:02 |
*** corvinux <corvinux!~corvinux@unaffiliated/corvinux> has joined #sailfishos-porters | 00:02 | |
ghosalmartin | 4 min wait for a new kernel to bake xD | 00:02 |
*** corvinux <corvinux!~corvinux@unaffiliated/corvinux> has joined #sailfishos-porters | 00:02 | |
phdeswer | Yeah probably adding androidboot.selinux=disabled might do it | 00:03 |
ghosalmartin | but does that mean in the config I should leave it enabled | 00:03 |
ghosalmartin | and do i need the bootparams now | 00:03 |
*** krnlyng <krnlyng!~liar@77.116.81.141.wireless.dyn.drei.com> has quit IRC (Ping timeout: 265 seconds) | 00:03 | |
phdeswer | Actually just running mkbootimage handles those | 00:03 |
*** corvinux <corvinux!~corvinux@unaffiliated/corvinux> has quit IRC (Client Quit) | 00:04 | |
phdeswer | Another reason why ripping kernels out of the android build system.. | 00:04 |
* phdeswer thinks I should write all these things down sometime and show example scripts etc... | 00:04 | |
ghosalmartin | tbh I meant as in CONFIG_SECURITY_SELINUX_BOOTPARAMS=y | 00:05 |
phdeswer | ghosalmartin: in your link it talks about kernel command line | 00:07 |
ghosalmartin | phdeswer: ahh I see | 00:07 |
ghosalmartin | sigh dmesg shows it in permissive mode | 00:10 |
ghosalmartin | and it reboot | 00:11 |
phdeswer | Yep that is not the kernel command line... you need to get the right one in the boot.img. And I don't know how, as it seems the Android SDK seems designed to make kernel development a hard as it can possibley be | 00:14 |
*** krnlyng <krnlyng!~liar@77.116.82.250.wireless.dyn.drei.com> has joined #sailfishos-porters | 00:16 | |
ghosalmartin | think am going to try to set it as n | 00:17 |
ghosalmartin | maybe its occams razor | 00:18 |
ghosalmartin | ah screw it, if I dsiable it in lots of places, something has to stick | 00:22 |
phdeswer | ghosalmartin: your issue is not in the kernel, most likely higher up in whatever checks for selinux | 00:23 |
ghosalmartin | but there must be a way of isabling it | 00:24 |
ghosalmartin | and maybe libslinux? | 00:24 |
sledges | in the past selinux=0 in kernel cmdline always worked | 00:24 |
sledges | android init checks that and stops going ahead with selinux | 00:24 |
sledges | (=droid-hal-init) | 00:24 |
sledges | worth investigating android init's source code | 00:24 |
sledges | (android_system_core iirc) | 00:24 |
ghosalmartin | =j 32 is bringing my pc down to a grinding halt lol | 00:25 |
phdeswer | Well according to the link ghosalmartin showed earlier it might be androidboot.selinux=disabled now. But yes, ripping the crap out of droid-hal-init would probably fix it too | 00:25 |
sledges | not ripping, just checking what changed | 00:25 |
sledges | as in the past everyone (and by that i mean <=aosp5 and derivatives) was happy | 00:26 |
ghosalmartin | well the moment of truth before bed | 00:30 |
sledges | prayer :)) | 00:30 |
sledges | (plug'n'pray?) | 00:31 |
ghosalmartin | haha | 00:31 |
ghosalmartin | didnt work | 00:31 |
sledges | dang | 00:31 |
ghosalmartin | could this be verity? | 00:31 |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Read error: Connection reset by peer) | 00:31 | |
sledges | this android m | 00:31 |
sledges | well, delve into init's src code next | 00:32 |
sledges | because with selinux=1 in the past, i would see dhi strace not exactly like yours | 00:32 |
sledges | and it would also issue a reboot-to-recovery signal | 00:32 |
sledges | all visible in strace | 00:32 |
sledges | but that wasn't your case | 00:33 |
sledges | so something significantly changed wrt selinux in android m | 00:33 |
ghosalmartin | well it does reboot to recovery still | 00:33 |
ghosalmartin | makes it easier so I can flash next attempt :P | 00:33 |
sledges | i know, but that should be visible in strace, maybe happens too quickly/another thread? | 00:34 |
sledges | that's why strace -fF is always best practice | 00:34 |
ghosalmartin | ahhh | 00:34 |
*** olafh <olafh!~olafh@p4FDEFF20.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 246 seconds) | 00:34 | |
ghosalmartin | one more attempt | 00:35 |
sledges | ay? | 00:36 |
sledges | well, -fF won't give us more clues tonight | 00:36 |
ghosalmartin | no different in log | 00:36 |
sledges | studying what changed in code | 00:36 |
sledges | is next | 00:36 |
ghosalmartin | that shouldnt be too bad...i hope | 00:36 |
ghosalmartin | https://github.com/ghosalmartin/android_system_core/blob/hybris-aosp-6.0.0_r26/init/init.cpp#L879 | 00:38 |
ghosalmartin | should I be using numbers and not strings | 00:38 |
ghosalmartin | in cmdline | 00:39 |
sledges | strings | 00:39 |
sledges | if (strcmp(name, "androidboot.selinux") == 0) { | 00:39 |
sledges | if (strcmp(value, "disabled") == 0) { | 00:39 |
ghosalmartin | right its definitley getting too late for me then lol | 00:39 |
sledges | :D | 00:40 |
ghosalmartin | although | 00:40 |
ghosalmartin | if (ALLOW_DISABLE_SELINUX) { return selinux_status_from_cmdline() == SELINUX_ENFORCING; } | 00:40 |
ghosalmartin | is thats right, doenst it means its always enforcing? | 00:41 |
*** cybette <cybette!~cybette@unaffiliated/cybette> has left #sailfishos-porters | 00:41 | |
ghosalmartin | ignore that lol | 00:41 |
ghosalmartin | its setting it when enforcing | 00:41 |
sledges | find origins of ALLOW_DISABLE_SELINUX | 00:42 |
ghosalmartin | was about to say that lol | 00:42 |
sledges | because that looks like not there | 00:42 |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 00:44 | |
ghosalmartin | ive check the .h and the selinux.h with no luck | 00:46 |
ghosalmartin | ill have a proper look tomorrow | 00:46 |
ghosalmartin | thanks for the help sledges and phdeswer | 00:46 |
ghosalmartin | night o/ | 00:47 |
ghosalmartin | may of found it: https://android.googlesource.com/platform/system/core/+/f3c85b2%5E!/ | 00:47 |
ghosalmartin | ah nope | 00:48 |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 00:49 | |
ghosalmartin | yeah its set in Android.mk for init | 00:52 |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Ping timeout: 265 seconds) | 00:52 | |
*** ghosalmartin <ghosalmartin!5215a909@gateway/web/freenode/ip.82.21.169.9> has quit IRC (Quit: Page closed) | 00:53 | |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Ping timeout: 256 seconds) | 01:11 | |
sledges | ghosalmartin: it could be that you are hitting a double whammy - it reboots because of something else, not selinux | 01:12 |
sledges | as it checks it's presence under sysfs (we see i strace) | 01:12 |
sledges | means ALLOW_DISABLE_SELINUX is set | 01:12 |
sledges | so dhi should be find as long as selinux is concerned | 01:13 |
sledges | to confirm that 100%, need to add more logging/debugging to init | 01:13 |
sledges | and see what causes reboot | 01:13 |
sledges | but strange | 01:14 |
sledges | openat(AT_FDCWD, "/sys/fs/selinux/null", O_RDWR|O_LARGEFILE) = -1 ENOENT (No such file or directory) | 01:14 |
sledges | and https://github.com/ghosalmartin/android_system_core/blob/hybris-aosp-6.0.0_r26/init/init.cpp#L903 | 01:14 |
sledges | check where init looks for /sys/fs/selinux/null ? | 01:14 |
sledges | n!n | 01:14 |
*** happy-dude <happy-dude!uid62780@gateway/web/irccloud.com/x-hnqvajahdypelwjh> has quit IRC (Quit: Connection closed for inactivity) | 01:15 | |
*** phdeswer <phdeswer!~phdeswer@91-159-55-220.elisa-laajakaista.fi> has quit IRC (Ping timeout: 255 seconds) | 01:21 | |
sledges | ghosalmartin: finding this, but shouldn't be critical: https://github.com/ghosalmartin/android_system_core/blob/hybris-aosp-6.0.0_r26/init/util.cpp#L382 | 01:21 |
sledges | followed by correct mknod in your strace https://dpaste.de/dSsE | 01:22 |
sledges | meaning eyes on openat(AT_FDCWD, "/dev/kmsg", O_WRONLY|O_LARGEFILE|O_CLOEXEC) = 3 | 01:22 |
sledges | https://github.com/ghosalmartin/android_system_core/blob/hybris-aosp-6.0.0_r26/libcutils/klog.c#L43 | 01:23 |
sledges | try to open that file yourself | 01:24 |
sledges | cat /dev/kmsg | 01:24 |
sledges | see if anything reboots :) | 01:24 |
sledges | ok n!n 4real now | 01:25 |
*** zhxt <zhxt!~zhxt@124.192.38.2> has joined #sailfishos-porters | 01:46 | |
*** krnlyng <krnlyng!~liar@77.116.82.250.wireless.dyn.drei.com> has quit IRC (Ping timeout: 240 seconds) | 02:03 | |
*** krnlyng <krnlyng!~liar@77.116.93.122.wireless.dyn.drei.com> has joined #sailfishos-porters | 02:17 | |
*** cybette <cybette!~cybette@unaffiliated/cybette> has joined #sailfishos-porters | 02:23 | |
*** gexc <gexc!~gexc@2602:306:3885:9390::48> has joined #sailfishos-porters | 02:31 | |
*** AmadeusXNet <AmadeusXNet!~AmadeusXN@host-121-249.parnet.fi> has quit IRC (Quit: Pi Pi Pie !!) | 02:40 | |
*** cybette <cybette!~cybette@unaffiliated/cybette> has quit IRC (Quit: leaving) | 02:56 | |
*** bogn_ <bogn_!uid134284@gateway/web/irccloud.com/x-uzxjarbxavtxecvt> has joined #sailfishos-porters | 03:02 | |
*** bogn_ <bogn_!uid134284@gateway/web/irccloud.com/x-uzxjarbxavtxecvt> has quit IRC (Client Quit) | 03:03 | |
*** bogn_ <bogn_!uid134284@gateway/web/irccloud.com/x-wrxveymizwfjmphi> has joined #sailfishos-porters | 03:03 | |
*** bogn_ <bogn_!uid134284@gateway/web/irccloud.com/x-rgtryuqasjzylvrk> has joined #sailfishos-porters | 03:04 | |
*** bogn <bogn!~bogn@ip-37-24-99-237.hsi14.unitymediagroup.de> has quit IRC (Quit: Leaving.) | 03:05 | |
*** bogn_ <bogn_!uid134284@gateway/web/irccloud.com/x-rgtryuqasjzylvrk> has quit IRC () | 03:09 | |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-tvjxmnpkqliwvxrk> has joined #sailfishos-porters | 03:09 | |
*** cybette <cybette!~cybette@unaffiliated/cybette> has joined #sailfishos-porters | 03:10 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-jfzzcfedwipnohsq> has quit IRC (Ping timeout: 240 seconds) | 03:21 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-jiaygsrhdakdoltb> has joined #sailfishos-porters | 03:23 | |
*** krnlyng <krnlyng!~liar@77.116.93.122.wireless.dyn.drei.com> has quit IRC (Ping timeout: 256 seconds) | 03:52 | |
*** krnlyng <krnlyng!~liar@178.114.88.217.wireless.dyn.drei.com> has joined #sailfishos-porters | 04:06 | |
*** phlixi_ <phlixi_!~phlixi@ppp-62-216-204-14.dynamic.mnet-online.de> has joined #sailfishos-porters | 04:32 | |
*** phlixi <phlixi!~phlixi@host-188-174-198-234.customer.m-online.net> has quit IRC (Ping timeout: 240 seconds) | 04:32 | |
*** jajabinker <jajabinker!75f20066@gateway/web/freenode/ip.117.242.0.102> has joined #sailfishos-porters | 04:58 | |
jajabinker | ENTRYMSG | 05:02 |
*** toomin <toomin!~HomoSapie@unaffiliated/toomin> has joined #sailfishos-porters | 05:03 | |
*** jajabinker <jajabinker!75f20066@gateway/web/freenode/ip.117.242.0.102> has quit IRC (Quit: Page closed) | 05:16 | |
*** NeKit <NeKit!~nekit@111.0.234.88> has joined #sailfishos-porters | 05:32 | |
*** spiiroin <spiiroin!~spiiroin@37-136-109-179.rev.dnainternet.fi> has quit IRC (Ping timeout: 256 seconds) | 05:48 | |
*** mbr__ <mbr__!~mbr@p54B5A769.dip0.t-ipconnect.de> has joined #sailfishos-porters | 05:50 | |
*** krnlyng <krnlyng!~liar@178.114.88.217.wireless.dyn.drei.com> has quit IRC (Ping timeout: 260 seconds) | 05:53 | |
*** sgflt <sgflt!~mbr@p54B21459.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 265 seconds) | 05:55 | |
*** krnlyng <krnlyng!~liar@77.117.86.198> has joined #sailfishos-porters | 06:05 | |
*** harha <harha!~harha@a91-153-12-92.elisa-laajakaista.fi> has quit IRC (Ping timeout: 265 seconds) | 06:19 | |
*** spiiroin <spiiroin!~spiiroin@2001:998:2a:dead:24bb:82a4:e114:d9f1> has joined #sailfishos-porters | 06:22 | |
*** olafh <olafh!~olafh@p4FF487C6.dip0.t-ipconnect.de> has joined #sailfishos-porters | 06:31 | |
*** electrolux_off is now known as electrolux | 06:32 | |
*** Nokius_work <Nokius_work!~Nokius@46.189.45.234> has joined #sailfishos-porters | 06:35 | |
*** harha <harha!~harha@194.157.27.2> has joined #sailfishos-porters | 06:37 | |
*** electrolux is now known as electrolux_off | 06:37 | |
locusf | good morning | 06:40 |
*** Nokius_work <Nokius_work!~Nokius@46.189.45.234> has quit IRC (Read error: Connection reset by peer) | 06:52 | |
*** Nokius_work <Nokius_work!~Nokius@46.189.65.154> has joined #sailfishos-porters | 06:52 | |
*** Nokius_work <Nokius_work!~Nokius@46.189.65.154> has quit IRC (Read error: Connection reset by peer) | 06:52 | |
*** Nokius_work <Nokius_work!~Nokius@46.189.45.234> has joined #sailfishos-porters | 06:52 | |
*** electrolux_off is now known as electrolux | 07:08 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@37.160.210.128> has joined #sailfishos-porters | 07:08 | |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 07:30 | |
*** dirkvl_ is now known as dirkvl | 07:33 | |
*** dvogel <dvogel!~dorianvog@130.79.244.134> has joined #sailfishos-porters | 07:40 | |
*** tanty_off is now known as tanty | 07:41 | |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Read error: Connection reset by peer) | 07:43 | |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 07:43 | |
*** laxtlo <laxtlo!~to@85-76-33-110-nat.elisa-mobile.fi> has quit IRC (Ping timeout: 255 seconds) | 07:49 | |
*** krnlyng <krnlyng!~liar@77.117.86.198> has quit IRC (Ping timeout: 272 seconds) | 07:50 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@37.160.210.128> has quit IRC (Ping timeout: 246 seconds) | 07:50 | |
*** NeKit <NeKit!~nekit@111.0.234.88> has quit IRC (Ping timeout: 246 seconds) | 07:50 | |
piggz | morning locusf | 07:57 |
*** gabriel9 <gabriel9!~bojan@89.111.237.28> has joined #sailfishos-porters | 08:01 | |
*** krnlyng <krnlyng!~liar@77.117.90.77.wireless.dyn.drei.com> has joined #sailfishos-porters | 08:03 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 08:06 | |
*** ghosalmartin <ghosalmartin!5215a909@gateway/web/freenode/ip.82.21.169.9> has joined #sailfishos-porters | 08:08 | |
ghosalmartin | morning all | 08:08 |
ghosalmartin | sledges: kmsg exists and opens fine, more diggings | 08:09 |
ghosalmartin | does droid-hal-init need the kernel to be at a certain level before running | 08:10 |
ghosalmartin | ie mounted all its stuff? | 08:10 |
*** ghosalmartin <ghosalmartin!5215a909@gateway/web/freenode/ip.82.21.169.9> has quit IRC (Client Quit) | 08:10 | |
*** ghosalmartin <ghosalmartin!5215a909@gateway/web/freenode/ip.82.21.169.9> has joined #sailfishos-porters | 08:11 | |
stephg | yo'ning! | 08:15 |
*** ghosalmartin <ghosalmartin!5215a909@gateway/web/freenode/ip.82.21.169.9> has quit IRC (Client Quit) | 08:15 | |
*** NeKit <NeKit!~nekit@111.0.234.88> has joined #sailfishos-porters | 08:17 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has quit IRC (Quit: Konversation terminated!) | 08:19 | |
piggz | sledges: i guess the version as 1.0 is correct https://github.com/CyanogenMod/android_hardware_samsung/blob/cm-12.1/exynos4/hal/libhwcomposer/SecHWC.cpp#L1080 | 08:20 |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 08:20 | |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Ping timeout: 256 seconds) | 08:22 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-jiaygsrhdakdoltb> has quit IRC (Ping timeout: 240 seconds) | 08:51 | |
*** electrolux is now known as electrolux_off | 08:54 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has joined #sailfishos-porters | 08:55 | |
ghosalmartin | yo yo yo | 08:56 |
Stskeeps | morn | 08:56 |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-gghbddjnwixcpdkm> has joined #sailfishos-porters | 08:56 | |
dr_gogeta86 | good monring guys | 08:59 |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-gghbddjnwixcpdkm> has quit IRC (Ping timeout: 260 seconds) | 09:02 | |
ghosalmartin | nothing like a can of red bull to wake uop | 09:04 |
Nokius_work | morning | 09:05 |
*** bogn1 <bogn1!~bogn@92.50.69.42> has joined #sailfishos-porters | 09:07 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-msktqpfugchdnoox> has joined #sailfishos-porters | 09:10 | |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-tvjxmnpkqliwvxrk> has quit IRC (Ping timeout: 260 seconds) | 09:10 | |
ghosalmartin | if dbus meant to be alive at boot, and how can I check if its alive? | 09:14 |
ghosalmartin | ah its because am still in preinit | 09:15 |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-msktqpfugchdnoox> has quit IRC (Ping timeout: 240 seconds) | 09:15 | |
dr_gogeta86 | http://www.bloomberg.com/features/2015-george-hotz-self-driving-car/ | 09:17 |
dr_gogeta86 | sorry | 09:17 |
dr_gogeta86 | https://twitter.com/dr_gogeta86/status/677417146377510912 | 09:17 |
*** hype <hype!~hype@79-133-7-36.bredband.aland.net> has quit IRC (Read error: Connection reset by peer) | 09:17 | |
*** dvogel <dvogel!~dorianvog@130.79.244.134> has quit IRC (Quit: Konversation terminated!) | 09:17 | |
*** dvogel <dvogel!~dorianvog@2001:660:4701:6001:c685:8ff:feb1:b1f6> has joined #sailfishos-porters | 09:18 | |
ghosalmartin | interesting article either way | 09:18 |
*** dvogel <dvogel!~dorianvog@2001:660:4701:6001:c685:8ff:feb1:b1f6> has quit IRC (Client Quit) | 09:22 | |
*** dvogel <dvogel!~dorianvog@130.79.244.134> has joined #sailfishos-porters | 09:23 | |
*** Nokius_ <Nokius_!~Nokius@p508BA7E1.dip0.t-ipconnect.de> has joined #sailfishos-porters | 09:31 | |
sledges | indeed | 09:32 |
drFaustroll_ | morning | 09:32 |
sledges | hamorn | 09:33 |
drFaustroll_ | sledges: did you ever try to connect to a vpn when using tethering? | 09:33 |
drFaustroll_ | seems this is not working for sailfish... | 09:33 |
sledges | piggz: ok, so you have 1.0 | 09:34 |
sledges | drFaustroll_: openvpn? | 09:34 |
piggz | sledges: yup ..... so atm, am not sure what, if anything CreateWindow should return? .... has the v10 backend ever worked for anyone? | 09:35 |
*** Nokius <Nokius!~Nokius@p5DDB5B51.dip0.t-ipconnect.de> has quit IRC (Ping timeout: 256 seconds) | 09:35 | |
drFaustroll_ | sledges: pptp | 09:36 |
sledges | drFaustroll_: you made tjc ticket about that | 09:38 |
*** Zucca <Zucca!~zucca@85-76-161-149-nat.elisa-mobile.fi> has joined #sailfishos-porters | 09:38 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 09:39 | |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-famnwfepjcxxnuqp> has joined #sailfishos-porters | 09:39 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-bintzvnhzwnzlayw> has joined #sailfishos-porters | 09:40 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has quit IRC (Read error: Connection reset by peer) | 09:40 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has quit IRC (Quit: Konversation terminated!) | 09:46 | |
sledges | piggz: hmmm | 09:46 |
sledges | piggz: http://piratepad.net/hadk-hwc lin 29 | 09:46 |
piggz | sledges: ah ... so never fully ported? | 09:48 |
piggz | :( | 09:48 |
sledges | piggz: as it shows: https://wiki.merproject.org/wiki/Adaptations/libhybris/porters | 09:48 |
sledges | all 1.0 are stuck in 10.1 | 09:48 |
sledges | since 11.0 already breaks things | 09:48 |
*** toomin <toomin!~HomoSapie@unaffiliated/toomin> has quit IRC (Ping timeout: 246 seconds) | 09:48 | |
sledges | (mako suffering especially) | 09:48 |
piggz | right | 09:48 |
piggz | sledges: make says hwc is 1.2 | 09:49 |
sledges | good refreshed my mind too now | 09:49 |
sledges | piggz: that needs doublechecking | 09:53 |
piggz | sledges: well, explains why locusf 10.1 port worked ok | 09:56 |
piggz | is 10.1 an ok base, or is later really needed these days? | 09:57 |
*** CrKit <CrKit!~nekit@111.0.71.113> has joined #sailfishos-porters | 09:59 | |
*** NeKit <NeKit!~nekit@111.0.234.88> has quit IRC (Read error: Connection reset by peer) | 09:59 | |
locusf | not really needed | 09:59 |
locusf | just use whats working | 09:59 |
sledges | piggz: 11.0 introduces orderly gstreamer1 and associated benefits (camera and browser multimedia playback) | 09:59 |
locusf | oh :p | 10:00 |
sledges | those things will need more work on 10.1, and sometimes they just doesn't compile | 10:00 |
sledges | vakkov_ got it on maguro 10.1 | 10:00 |
sledges | but we still struggle on mako to compile all those 10.1 codecs for gstreamer1 | 10:00 |
sledges | hence why we so desperately need this issue sorted | 10:01 |
sledges | for mako's sake:) | 10:01 |
*** dirkvl <dirkvl!~dirkvl@37.143.36.100> has joined #sailfishos-porters | 10:01 | |
sledges | (whole http://piratepad.net/hadk-hwc needs reading if wanna help :) i'll relay questions to sletta) | 10:01 |
sledges | piggz: mako is 1.0: https://github.com/mer-hybris/android_hardware_libhardware/blob/hybris-10.1/modules/hwcomposer/hwcomposer.cpp#L120 | 10:02 |
sledges | i'll sort it with carepack | 10:02 |
piggz | sledges: ok .... so ... until qpa-hecomposer is fixed for > 1.0, need to stay on 10.1 | 10:03 |
piggz | i tried just returning the v11 backend, but it segfaults later ;) | 10:03 |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 10:04 | |
sledges | yes sadly | 10:04 |
locusf | argh | 10:04 |
sledges | *until qpa hwc is fixed for <=1.0 | 10:05 |
piggz | man, its gonna tke _ages_ to repo sync to 10.1 | 10:06 |
piggz | :) | 10:06 |
*** krnlyng <krnlyng!~liar@77.117.90.77.wireless.dyn.drei.com> has quit IRC (Ping timeout: 265 seconds) | 10:06 | |
*** spiiroin <spiiroin!~spiiroin@2001:998:2a:dead:24bb:82a4:e114:d9f1> has quit IRC (Ping timeout: 240 seconds) | 10:12 | |
*** krnlyng <krnlyng!~liar@77.116.123.22.wireless.dyn.drei.com> has joined #sailfishos-porters | 10:19 | |
*** spiiroin <spiiroin!~spiiroin@37-136-109-179.rev.dnainternet.fi> has joined #sailfishos-porters | 10:32 | |
sledges | piggz: try again fbdev | 10:38 |
sledges | 1.0 should be running on that (as v0 does) | 10:38 |
piggz | sledges: oh, it works | 10:38 |
*** carepack <carepack!~carepack@unaffiliated/carepack> has joined #sailfishos-porters | 10:38 | |
piggz | sledges: actually, seems to have hung | 10:39 |
sledges | after first frame? | 10:39 |
sledges | or due to fence leaks | 10:39 |
piggz | sledges: no, after a few seconds animation | 10:39 |
piggz | and i cant ctrl-c | 10:39 |
*** ced117 <ced117!~ced117@opensuse/member/ced117> has quit IRC (Quit: Quitte) | 10:40 | |
locusf | ah that was it | 10:40 |
sledges | piggz: check for fence leaks | 10:42 |
sledges | 23:47 < piggz> [root@localhost ~]# ls -la /proc/$(pidof test_hwcomposer)/fd | grep fence | wc -l | 10:42 |
sledges | ;) | 10:42 |
*** ced117 <ced117!~ced117@opensuse/member/ced117> has joined #sailfishos-porters | 10:42 | |
piggz | sledges: 530 | 10:43 |
sledges | does it keep going up? | 10:44 |
piggz | sledges: yes | 10:44 |
piggz | sledges: hung at 996 | 10:44 |
piggz | sledges: im going to a funeral shortly ... u reckon only solution is cm10.1? | 10:47 |
piggz | these all seem to be known problems | 10:48 |
piggz | that plenty have had before! :) | 10:48 |
sledges | piggz: sorry to hear | 10:52 |
sledges | piggz: yes, vakkov_ will try to fix hwc qpa, please join the efforts | 10:52 |
sledges | in cm10.1 you'll have to build frameworks_av for gst1 | 10:52 |
sledges | (is what vakkov_ told me) | 10:52 |
sledges | fbdev was sletta's hint btw ;) | 10:53 |
sledges | but frameworks_av might not build as one, so lots of hacky mm and mmm usage will be needed | 10:53 |
sledges | (as it happened for mako) | 10:53 |
locusf | n7000 has never worked on hwcomposer | 10:53 |
locusf | it was always fbdev | 10:53 |
locusf | unless piggz used some black magic on it :) | 10:54 |
locusf | but yeah I'll try to get something together in the weekend wrt this | 10:54 |
piggz | sledges: vakkov_: happy to help efforts with hwc qpa | 10:57 |
sledges | locusf: what would you attempt? | 10:57 |
* piggz wondered that too :) | 10:57 | |
locusf | sledges: wrt fence leaks | 10:58 |
*** Zucca <Zucca!~zucca@85-76-161-149-nat.elisa-mobile.fi> has quit IRC (Ping timeout: 240 seconds) | 10:58 | |
mal- | I did some bt testing yesterday with my laptop and xperia, file transfer worked only to the device but not from the device | 10:59 |
*** mkrawczuk <mkrawczuk!~quassel@217-67-201-162.itsa.net.pl> has joined #sailfishos-porters | 10:59 | |
*** electrolux_off is now known as electrolux | 11:04 | |
Nokius_work | mal-: :( iirc had this once too reboot sloved it for | 11:08 |
mal- | Nokius_work: ok, I'll try | 11:12 |
*** sletta <sletta!~sletta@231.170.102.62.customer.cdi.no> has joined #sailfishos-porters | 11:14 | |
sledges | o/ sletta! | 11:15 |
sletta | \o | 11:16 |
*** CrKit <CrKit!~nekit@111.0.71.113> has quit IRC (Read error: Connection reset by peer) | 11:17 | |
piggz | lo sletta ... if you could fix hwc 1.0 in the next few hrs that would be ideal :P | 11:17 |
* sletta hides | 11:18 | |
*** CrKit <CrKit!~nekit@111.0.69.84> has joined #sailfishos-porters | 11:18 | |
sletta | What was this fence leak with fbdev? | 11:18 |
sletta | From the looks of it, 1.0 is broken by default, does it work anywhere? | 11:19 |
sledges | sletta: fence leak is also with hwcomposer on mako (also 1.0) | 11:20 |
sledges | 1.0 only works with cm10.1 (aosp4) | 11:20 |
sledges | and starts leaking from cm11.0 and up (aosp5) | 11:20 |
sletta | sledges: with fbdev? | 11:20 |
sledges | with both | 11:20 |
sletta | not hwcomposer | 11:20 |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has quit IRC (Quit: Konversation terminated!) | 11:22 | |
*** drFaustroll <drFaustroll!~alin@178.167.254.80.threembb.ie> has joined #sailfishos-porters | 11:22 | |
*** drFaustroll <drFaustroll!~alin@178.167.254.80.threembb.ie> has quit IRC (Changing host) | 11:22 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 11:22 | |
sletta | v10.cpp doesn't allocate a HWComposerNativeWindow, so it can't have worked with hwcomposer.. It would require fbdev | 11:22 |
* sledges checks | 11:22 | |
* sletta points out that he hasn't really looked at this stuff since June, so my memory is a bit dodgy on the subject :p | 11:22 | |
Nokius_work | mal-: I will check it later home with the find5 | 11:23 |
*** AmadeusXNet <AmadeusXNet!~AmadeusXN@host-121-249.parnet.fi> has joined #sailfishos-porters | 11:23 | |
sledges | sletta: hm mako is for sure hwc: https://github.com/mer-hybris/droid-hal-device/blob/hybris-10.1/device-lge-mako-configs/var/lib/environment/compositor/droid-hal-device.conf#L3 | 11:24 |
sledges | and it's 1.0 https://github.com/mer-hybris/android_hardware_libhardware/blob/hybris-10.1/modules/hwcomposer/hwcomposer.cpp#L120 | 11:25 |
sletta | But then it would also crash in the exact same place.. Which of the HwComposer vXY.cpp does it end up in? | 11:26 |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 11:27 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has quit IRC (Ping timeout: 240 seconds) | 11:27 | |
carepack | hello | 11:33 |
Nokius_work | o/ carepack | 11:34 |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has quit IRC (Read error: Connection reset by peer) | 11:36 | |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has joined #sailfishos-porters | 11:36 | |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has quit IRC (Changing host) | 11:36 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 11:36 | |
carepack | sletta: I've made a piratepad with pastebin logs etc about this problem. maybe it's useful: http://piratepad.net/aIiOfM4zqB | 11:36 |
carepack | hi nokius_work ;) | 11:37 |
carepack | http://pastebin.com/XKnSuQS4 ; http://pastebin.com/McekdjhH ; http://pastebin.com/McekdjhH | 11:39 |
sledges | carepack: so it is going through hwcomposer_backend_v11.cpp | 11:42 |
sledges | carepack: could you do this on your cm11 tree? probably mako switched to 1.1 | 11:42 |
sledges | there | 11:42 |
sledges | find $ANDROID_ROOT/hardware/*/display* -type d -name libhwcomposer | xargs -I{} grep -H device.common.version {}/hwc.cpp | 11:42 |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-famnwfepjcxxnuqp> has quit IRC (Ping timeout: 260 seconds) | 11:43 | |
sletta | right, v11 does allocate a HWComposerNativeWindow, so that would work | 11:44 |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-miixfpffiphyxomi> has joined #sailfishos-porters | 11:44 | |
sletta | so v10 requires fbdev, it isn't supposed to work with hwcomposer | 11:46 |
* sledges powers on his mako | 11:48 | |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-miixfpffiphyxomi> has quit IRC (Read error: Connection reset by peer) | 11:49 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-bintzvnhzwnzlayw> has quit IRC (Ping timeout: 240 seconds) | 11:51 | |
ghosalmartin | also to get out of preinit, do I go to droid-hal-init? | 11:52 |
ghosalmartin | also anyone any idea what dir/file this is looking for: execve("droid-hal-init", ["droid-hal-init", "--second-stage"], [/* 8 vars */]) = -1 ENOENT (No such file or directory) | 11:53 |
*** CrKit <CrKit!~nekit@111.0.69.84> has quit IRC (Read error: Connection reset by peer) | 11:55 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has quit IRC (Remote host closed the connection) | 11:55 | |
*** CrKit <CrKit!~nekit@111.0.206.97> has joined #sailfishos-porters | 11:55 | |
*** jusa_ <jusa_!jusa@kraa.fi> has quit IRC (Ping timeout: 245 seconds) | 11:58 | |
Nokius_work | mal-: did u check if the mac adress wars correct I had once the issue thats was wrong in early builds I had intressting incidents with BT | 11:58 |
sledges | sletta: carepack: 10.1 mako shows hwc version 1010001, which is 1.1, that doesn't correspond with the one in the code | 11:59 |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-rpqpiveezzgggfdy> has joined #sailfishos-porters | 11:59 | |
*** ghosalmartin <ghosalmartin!5ad886c6@gateway/web/freenode/ip.90.216.134.198> has joined #sailfishos-porters | 11:59 | |
sledges | carepack: still waiting for your one-liner output from 10.1 tree :) | 11:59 |
sledges | but at least world is more half-sane now:) | 11:59 |
carepack | sledges: my vm is not coming up. fixing libvirt atm. then I'll paste the ouput | 12:02 |
sledges | carepack: ok | 12:03 |
sledges | so two problems: fence leaks on >=11.0 on fbdev/hwc v1.0 v1.1, and crash on hwc for 1.0 (on any base) | 12:03 |
sledges | 2nd problem is overcome - just use fbdev | 12:03 |
sledges | fence leaks remains :) | 12:04 |
sledges | sletta: am i making sense? :) | 12:04 |
sletta | sledges: I would say problem two is "user error". It isn't a combo that is meant to work | 12:04 |
sledges | yes | 12:04 |
*** Zucca <Zucca!~zucca@85-76-161-149-nat.elisa-mobile.fi> has joined #sailfishos-porters | 12:04 | |
mal- | Nokius_work: at least the mac address seen on my laptop looks reasonable | 12:05 |
*** krnlyng <krnlyng!~liar@77.116.123.22.wireless.dyn.drei.com> has quit IRC (Ping timeout: 255 seconds) | 12:07 | |
Nokius_work | mal-: ok :) better 00:00:00:00 | 12:07 |
Nokius_work | mal-: if u trust the laptop is also failing ? | 12:08 |
*** carepack <carepack!~carepack@unaffiliated/carepack> has quit IRC (Quit: Lost terminal) | 12:09 | |
*** harha <harha!~harha@194.157.27.2> has left #sailfishos-porters | 12:10 | |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-rpqpiveezzgggfdy> has quit IRC (Ping timeout: 260 seconds) | 12:11 | |
Nokius_work | mal-: did u try another sender? | 12:13 |
mal- | Nokius_work: it works, didn't know that I have specifically enable receiving files through bluetooth in ubuntu | 12:15 |
*** carepack <carepack!~carepack@unaffiliated/carepack> has joined #sailfishos-porters | 12:16 | |
*** krnlyng <krnlyng!~liar@77.117.100.124.wireless.dyn.drei.com> has joined #sailfishos-porters | 12:20 | |
carepack | sledges: http://cxg.de/paste.php | 12:24 |
carepack | sorry: http://cxg.de/_36a2da.htm | 12:25 |
*** ghosalmartin <ghosalmartin!5ad886c6@gateway/web/freenode/ip.90.216.134.198> has quit IRC (Ping timeout: 252 seconds) | 12:25 | |
sledges | carepack: which base is that? | 12:26 |
carepack | cm11 | 12:26 |
sledges | and on cm10 pls? | 12:26 |
*** hype <hype!~hype@79-133-7-36.bredband.aland.net> has joined #sailfishos-porters | 12:29 | |
carepack | V | 12:29 |
carepack | find $ANDROID_ROOT/hardware/*/display* -type d -name libhwcomposer | xargs -I{} grep -H device.common.version {}/hwc.cpp | 12:30 |
carepack | find: /home/micha/mer/android/droid/hardware/*: No such file or directory | 12:30 |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-tlaewwiooyneeddn> has joined #sailfishos-porters | 12:31 | |
*** harha <harha!~harha@194.157.27.2> has joined #sailfishos-porters | 12:31 | |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-xhgkczgvvjbvtjvi> has joined #sailfishos-porters | 12:32 | |
sledges | carepack: is $ANDROID_ROOT - cm10.1? ls -l $ANDROID_ROOT/hardware | 12:33 |
carepack | yes it is | 12:34 |
carepack | http://cxg.de/_85913b.htm | 12:34 |
Nokius_work | mal-: :D | 12:40 |
sledges | carepack: ok, doesn't make sense, it says 1.0 in [1] but when run on sailfishos says 1010001 | 12:48 |
sledges | [1] https://github.com/mer-hybris/android_hardware_libhardware/blob/hybris-10.1/modules/hwcomposer/hwcomposer.cpp#L120 | 12:48 |
*** dr_gogeta86 <dr_gogeta86!~gogeta@unaffiliated/dr-gogeta86/x-8885803> has quit IRC (Quit: ZNC - 1.7.x-git-126-41beb4f - http://znc.in) | 12:49 | |
*** dr_gogeta86 <dr_gogeta86!~gogeta@2001:41d0:52:100::eb5> has joined #sailfishos-porters | 12:50 | |
*** dr_gogeta86 <dr_gogeta86!~gogeta@2001:41d0:52:100::eb5> has quit IRC (Changing host) | 12:50 | |
*** dr_gogeta86 <dr_gogeta86!~gogeta@unaffiliated/dr-gogeta86/x-8885803> has joined #sailfishos-porters | 12:50 | |
carepack | sledges: ? cm11 should run = ? | cm10 should run = ? | 12:52 |
sledges | carepack: i'm talking only about 10.1 now | 12:54 |
carepack | ok | 12:55 |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has quit IRC (Ping timeout: 272 seconds) | 12:56 | |
sledges | carepack: /win 26 | 12:58 |
locusf | full of it | 12:59 |
*** jjardon <jjardon!sid723@gateway/web/irccloud.com/x-tlaewwiooyneeddn> has quit IRC () | 13:02 | |
*** jjardon_ <jjardon_!sid723@gateway/web/irccloud.com/x-kesgqjptxiwoufzp> has joined #sailfishos-porters | 13:02 | |
carepack | sledges: what? | 13:06 |
sledges | carepack: accidentally pressed Enter | 13:07 |
carepack | ok | 13:07 |
*** minimec <minimec!~minimec@unaffiliated/minimec> has quit IRC (Quit: leaving) | 13:08 | |
sledges | sletta: looks like fence leaks are not limited to fbdev and 1.0; mako is >=1.1 and leaks on cm11 too | 13:09 |
sledges | it's due to still and old master branch on hwc qpa | 13:10 |
sledges | tbj needs to be reworked and merged to master; now i'm finally memory-refreshed:)) | 13:10 |
*** lake11 <lake11!~denis@93.191.18.90> has joined #sailfishos-porters | 13:17 | |
*** TheKit <TheKit!~nekit@111.0.193.182> has joined #sailfishos-porters | 13:20 | |
*** hype <hype!~hype@79-133-7-36.bredband.aland.net> has quit IRC (Read error: Connection reset by peer) | 13:23 | |
*** CrKit <CrKit!~nekit@111.0.206.97> has quit IRC (Ping timeout: 260 seconds) | 13:23 | |
*** jjardon_ is now known as jjardon | 13:23 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 13:28 | |
*** krnlyng <krnlyng!~liar@77.117.100.124.wireless.dyn.drei.com> has quit IRC (Ping timeout: 240 seconds) | 13:32 | |
*** jusa_ <jusa_!jusa@kraa.fi> has joined #sailfishos-porters | 13:35 | |
*** CrKit <CrKit!~nekit@111.0.136.199> has joined #sailfishos-porters | 13:38 | |
*** TheKit <TheKit!~nekit@111.0.193.182> has quit IRC (Ping timeout: 256 seconds) | 13:40 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has joined #sailfishos-porters | 13:49 | |
sletta | sledges: which part of tbj is it you are after? That branch was primiarly for tablet because of how the GPU worked | 13:50 |
sledges | sletta: Ultimate goal is for sailfish hwc compositor (lipstick) to do something similar to what android's surfaceflinger does, work on that is being done on tbj branch. | 13:52 |
sledges | from http://piratepad.net/hadk-hwc | 13:52 |
sletta | that isn't exactly true :p | 13:54 |
sledges | and also line 30 ;P | 13:56 |
sletta | yep | 13:56 |
sletta | both the threading and the hardware layering was done for tbj because the GPU couldn't manage the composition of both clients and compositor at the same time | 13:58 |
* sledges nods | 13:58 | |
sledges | but old master leaks fences for newer android bases on certain hw | 13:58 |
sletta | I would prefer to not make that code the baseline though. It is very complicated and abuses certain HWC featrures | 13:58 |
* sledges nods | 13:58 | |
sledges | times do change;) | 13:59 |
ghosalmartin | is it normal that the partitions systemd is trying to mount are named as: dev-mmcblk0p24.device. | 13:59 |
sletta | sledges: If I had half a year or so to work on this, I'd try to move composition and hardware layering out of lipstick into its own proper compositor process | 14:00 |
sledges | sletta: yet now you have community;) | 14:00 |
sletta | Then we could avoid many of the hacks that exist in tbj and still get hwc for devices where it is needed. | 14:01 |
sledges | we're pretty cornered as i see, but it's very rarely ideal in IT ;) | 14:01 |
sledges | (im still a bad poet) | 14:01 |
sletta | yeah, true that.. It is kinda hard to push a vague idea onto somebody else though :) | 14:01 |
sletta | I thought the fixes I did back in september on the master branch fixed some things as well? Or was that only the lockup on mako? | 14:02 |
*** krnlyng <krnlyng!~liar@77.116.119.82.wireless.dyn.drei.com> has joined #sailfishos-porters | 14:04 | |
*** toomin <toomin!~HomoSapie@unaffiliated/toomin> has joined #sailfishos-porters | 14:06 | |
sledges | carepack: which version of qpa hwc was the last one you tried on cm11 mako? | 14:08 |
carepack | the last one I tried: wip-hwc-v1.4 | 14:13 |
carepack | also master | 14:14 |
sledges | carepack: which tag of master? | 14:14 |
carepack | puh. a lot. But can't remember which ones I tried | 14:16 |
*** electrolux is now known as electrolux_off | 14:23 | |
stephg | psa sailfish community meeting is now in #mer-meeting | 14:29 |
ghosalmartin | sledges: droid-hal-init started | 14:35 |
*** harha <harha!~harha@194.157.27.2> has quit IRC (Quit: Leaving.) | 14:36 | |
ghosalmartin | and it died :P | 14:37 |
*** rbn <rbn!~ruben@ip4d17d110.dynamic.kabel-deutschland.de> has joined #sailfishos-porters | 14:37 | |
*** lepanen <lepanen!~lepanen@62-78-249-214.bb.dnainternet.fi> has joined #sailfishos-porters | 14:39 | |
*** caprico_ <caprico_!~sailfish@12.146.127.176.dynamic.wline.res.cust.swisscom.ch> has joined #sailfishos-porters | 14:47 | |
sledges | carepack: only last date/day is importent | 14:48 |
carepack | last modifiying date fof the directory is 11 september | 14:49 |
*** faenil <faenil!~faenil@static.186.47.47.78.clients.your-server.de> has quit IRC (Quit: Reconnecting) | 14:50 | |
*** faenil <faenil!~faenil@static.186.47.47.78.clients.your-server.de> has joined #sailfishos-porters | 14:50 | |
sledges | carepack: could you re-try with latest master please? | 14:51 |
*** faenil <faenil!~faenil@static.186.47.47.78.clients.your-server.de> has quit IRC (Client Quit) | 14:51 | |
*** faenil <faenil!~faenil@78.47.47.186> has joined #sailfishos-porters | 14:51 | |
sledges | there were commits on 11 september (probably after your tests, as i see from our logs -- 10 september;) and then more commits on 18 september; one more from Stskeeps on Nov re unclosed fences(!)) | 14:51 |
carepack | goin to try. will report back | 14:52 |
*** rbn <rbn!~ruben@ip4d17d110.dynamic.kabel-deutschland.de> has quit IRC () | 14:52 | |
*** Bono_NL <Bono_NL!~Bono@62.140.132.224> has joined #sailfishos-porters | 14:52 | |
sledges | many thanks carepack | 14:53 |
carepack | np | 14:53 |
lake11 | what differences are in compiling against android versus compiling against cyanigenmod? | 14:58 |
ghosalmartin | lake11: cynagendmod is probably easier | 14:59 |
sledges | yes, it has breakfast:) | 15:01 |
*** gabriel9 <gabriel9!~bojan@89.111.237.28> has quit IRC (Quit: Konversation terminated!) | 15:02 | |
ghosalmartin | but lunch :D | 15:02 |
* sledges stomach -> gurgs | 15:04 | |
stephg | bit late for lunch? | 15:06 |
sledges | high tea then | 15:06 |
ghosalmartin | linner | 15:06 |
stephg | ha | 15:06 |
ghosalmartin | lunch + dinner = linner | dunch | 15:07 |
ghosalmartin | also could udev be responsible as to why my partitions are mounting, and permissions issues are rampant :P | 15:08 |
stephg | ghosalmartin: permissions shouldn't be udev? | 15:09 |
ghosalmartin | stephg: something is borked, and its causing issues with systemd and dbus and udev | 15:10 |
ghosalmartin | well its not allowing my partitions to mount, keeps timing oujt | 15:10 |
stephg | perms would be instant, no? | 15:10 |
ghosalmartin | stephg: any ideas set by what? | 15:10 |
*** harha <harha!~harha@a91-153-12-92.elisa-laajakaista.fi> has joined #sailfishos-porters | 15:11 | |
stephg | ghosalmartin: in this space, no :( | 15:13 |
stephg | I mean udev will set mode on devices | 15:14 |
stephg | and you could see if it was that by overridding to 0777 or something slightly less stupid | 15:14 |
stephg | but if it were permissions I'd expect everything to stop instantly | 15:14 |
stephg | not hang | 15:14 |
*** sletta <sletta!~sletta@231.170.102.62.customer.cdi.no> has quit IRC (Ping timeout: 256 seconds) | 15:18 | |
*** TheKit <TheKit!~nekit@111.0.234.43> has joined #sailfishos-porters | 15:18 | |
*** laxtlo <laxtlo!~to@85-76-2-29-nat.elisa-mobile.fi> has joined #sailfishos-porters | 15:20 | |
*** Bono_NL <Bono_NL!~Bono@62.140.132.224> has quit IRC (Quit: IRC for Sailfish 0.9) | 15:20 | |
*** CrKit <CrKit!~nekit@111.0.136.199> has quit IRC (Ping timeout: 240 seconds) | 15:21 | |
Nokius_work | ghosalmartin: linner :D | 15:26 |
*** krnlyng <krnlyng!~liar@77.116.119.82.wireless.dyn.drei.com> has quit IRC (Ping timeout: 265 seconds) | 15:27 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has quit IRC (Ping timeout: 265 seconds) | 15:40 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has joined #sailfishos-porters | 15:55 | |
ghosalmartin | stephg: id say all the errors is either dbus having trouble authenticating or systemd timing out because it fails to get authentication | 15:57 |
sledges | https://www.thunderclap.it/projects/35901-support-jolla-breaking-waves | 15:58 |
stephg | ghosalmartin: ok so I'm not familiar enough with the auth mechanisms (or indeed that any existed) to be help. sorry :( | 15:58 |
ghosalmartin | stephg: thats alright, something will turn up | 16:01 |
*** gabriel9 <gabriel9!~bojan@185.125.120.101> has joined #sailfishos-porters | 16:02 | |
*** Nokius_work <Nokius_work!~Nokius@46.189.45.234> has quit IRC (Ping timeout: 272 seconds) | 16:04 | |
*** krnlyng <krnlyng!~liar@77.117.85.84.wireless.dyn.drei.com> has joined #sailfishos-porters | 16:05 | |
ghosalmartin | https://dpaste.de/0mAk | 16:07 |
ghosalmartin | this still seems like its selinux, the biggest pain so far | 16:07 |
*** CrKit <CrKit!~nekit@111.0.235.121> has joined #sailfishos-porters | 16:12 | |
*** sletta <sletta!~sletta@231.170.102.62.customer.cdi.no> has joined #sailfishos-porters | 16:14 | |
*** TheKit <TheKit!~nekit@111.0.234.43> has quit IRC (Ping timeout: 240 seconds) | 16:16 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has quit IRC (Read error: Connection reset by peer) | 16:16 | |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has joined #sailfishos-porters | 16:16 | |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has quit IRC (Changing host) | 16:16 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 16:16 | |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has joined #sailfishos-porters | 16:17 | |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has quit IRC (Changing host) | 16:17 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 16:17 | |
ghosalmartin | sledges: would it be a bad idea to disable selinux but commenting out the init method :) | 16:18 |
*** gabriel9 <gabriel9!~bojan@185.125.120.101> has quit IRC (Quit: Konversation terminated!) | 16:20 | |
sledges | ghosalmartin: point me in code where writev(3, [{"<3>droid-hal-init: ", 19}, {"Security failure; rebooting into"..., 50}], 2) = 69 | 16:23 |
ghosalmartin | will do | 16:23 |
ghosalmartin | sledges: https://github.com/ghosalmartin/android_system_core/blob/f7a29f4779b78f98bcbd1d4af19cbaa8a429dda1/init/init.cpp#L949 | 16:24 |
*** bogn1 <bogn1!~bogn@92.50.69.42> has quit IRC (Quit: Leaving.) | 16:24 | |
ghosalmartin | sledges: I think its because of bad init.cpp patching on my part | 16:25 |
sledges | ghosalmartin: which call to security_failure() causes that? | 16:26 |
ghosalmartin | I have to assume: https://github.com/ghosalmartin/android_system_core/blob/f7a29f4779b78f98bcbd1d4af19cbaa8a429dda1/init/init.cpp#L1061 | 16:26 |
* piggz is back | 16:27 | |
piggz | sletta: all fixed? :D | 16:28 |
*** dvogel <dvogel!~dorianvog@130.79.244.134> has quit IRC (Ping timeout: 265 seconds) | 16:28 | |
sledges | ghosalmartin: launch droid-hal-init with --second-stage ? | 16:29 |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has quit IRC (Ping timeout: 240 seconds) | 16:30 | |
*** Sail0r2 <Sail0r2!~Sail0r@ipbcc242af.dynamic.kabel-deutschland.de> has joined #sailfishos-porters | 16:33 | |
*** Sail0r2 <Sail0r2!~Sail0r@ipbcc242af.dynamic.kabel-deutschland.de> has quit IRC (Remote host closed the connection) | 16:34 | |
*** ghosalmartin_nex <ghosalmartin_nex!~sailfish@dab-yat1-h-30-9.dab.02.net> has joined #sailfishos-porters | 16:35 | |
ghosalmartin_nex | sledges, thats a thing? :O | 16:36 |
sledges | well https://github.com/ghosalmartin/android_system_core/blob/f7a29f4779b78f98bcbd1d4af19cbaa8a429dda1/init/init.cpp#L1003 | 16:37 |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has joined #sailfishos-porters | 16:48 | |
*** drFaustroll_ <drFaustroll_!~alin@178.167.254.143.threembb.ie> has quit IRC (Changing host) | 16:48 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 16:48 | |
ghosalmartin | sledges: and no reboot, hal second stage started | 17:13 |
sledges | \o/ | 17:13 |
ghosalmartin | sledges: but nothing happened lol | 17:14 |
sledges | did you expect cookies? | 17:14 |
sledges | :D | 17:14 |
ghosalmartin | sledges: but that could be due to missing services that systemd hasnt started | 17:14 |
ghosalmartin | sledges: maybe a pretty UI? :P itll never be that easy I suppose | 17:14 |
sledges | on a fresh aosp base that you just provided? not really;) | 17:14 |
sledges | but hey, getting closer! | 17:15 |
sledges | well done! | 17:15 |
ghosalmartin | sledges: i assume that file will probably need more patching, would it really be such a bad idea to get rid of selinux in init.cpp | 17:15 |
sledges | yes, because the less patches the better | 17:16 |
ghosalmartin | sledges: fair enough | 17:17 |
sledges | unless completely necessary | 17:17 |
*** r0kk3rz <r0kk3rz!~chatzilla@host-92-23-137-172.as13285.net> has joined #sailfishos-porters | 17:18 | |
ghosalmartin | sledges: but then wouldnt you need to edit the droid-hal-init service with --second-stage | 17:22 |
ghosalmartin | ahh found the startup file | 17:23 |
*** CrKit <CrKit!~nekit@111.0.235.121> has quit IRC (Ping timeout: 272 seconds) | 17:25 | |
*** lepanen <lepanen!~lepanen@62-78-249-214.bb.dnainternet.fi> has quit IRC (Quit: My Mac has gone to sleep. ZZZzzz…) | 17:26 | |
ghosalmartin | wait is the basic structure init.cpp > *.rc > starts sailfishos stuff? | 17:26 |
*** ghosalmartin_nex <ghosalmartin_nex!~sailfish@dab-yat1-h-30-9.dab.02.net> has quit IRC (Quit: IRC for Sailfish 0.9) | 17:29 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has quit IRC (Quit: Leaving) | 17:30 | |
*** SfietKonstantinW <SfietKonstantinW!c2623324@gateway/web/cgi-irc/kiwiirc.com/ip.194.98.51.36> has quit IRC (Quit: http://www.kiwiirc.com/ - A hand crafted IRC client) | 17:31 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has joined #sailfishos-porters | 17:32 | |
*** caprico_ <caprico_!~sailfish@12.146.127.176.dynamic.wline.res.cust.swisscom.ch> has quit IRC (Quit: IRC for Sailfish 0.9) | 17:44 | |
*** carepack <carepack!~carepack@unaffiliated/carepack> has quit IRC (Ping timeout: 246 seconds) | 17:49 | |
*** carepack <carepack!~carepack@unaffiliated/carepack> has joined #sailfishos-porters | 17:56 | |
*** ghosalmartin <ghosalmartin!~ghosalmar@90.216.134.194> has quit IRC (Ping timeout: 260 seconds) | 17:56 | |
*** lepanen <lepanen!~lepanen@62-78-249-214.bb.dnainternet.fi> has joined #sailfishos-porters | 17:56 | |
*** krnlyng_ <krnlyng_!~liar@83.175.90.24> has joined #sailfishos-porters | 18:00 | |
*** krnlyng <krnlyng!~liar@77.117.85.84.wireless.dyn.drei.com> has quit IRC (Ping timeout: 265 seconds) | 18:02 | |
*** krnlyng_ <krnlyng_!~liar@83.175.90.24> has quit IRC (Ping timeout: 256 seconds) | 18:05 | |
*** mkrawczuk <mkrawczuk!~quassel@217-67-201-162.itsa.net.pl> has quit IRC (Ping timeout: 246 seconds) | 18:07 | |
*** krnlyng <krnlyng!~liar@77.117.82.198> has joined #sailfishos-porters | 18:12 | |
*** tanty is now known as tanty_off | 18:16 | |
*** electrolux_off is now known as electrolux | 18:36 | |
*** dirkvl <dirkvl!~dirkvl@37.143.36.100> has quit IRC (Ping timeout: 256 seconds) | 18:48 | |
*** dirkvl <dirkvl!~dirkvl@37.143.36.100> has joined #sailfishos-porters | 18:59 | |
*** dirkvl <dirkvl!~dirkvl@37.143.36.100> has quit IRC (Remote host closed the connection) | 19:00 | |
*** lepanen <lepanen!~lepanen@62-78-249-214.bb.dnainternet.fi> has quit IRC (Quit: Textual IRC Client: www.textualapp.com) | 19:05 | |
*** taaem <taaem!~taaem@f050164222.adsl.alicedsl.de> has quit IRC (Ping timeout: 260 seconds) | 19:08 | |
sledges | ghosalmartin: there more to it ;) | 19:16 |
sledges | sletta: we ran latest qpa hwc on mako cm11, different behaviour now: shows first frame then quits with: QPA-HWC: There can only be one window, someone tried to create more. | 19:17 |
sledges | surfaceflinger, test_hwcomposer, and minimer work fine though - since they don't do any compositing iiuc | 19:17 |
sledges | EGL_PLATFORM=hwcomposer QT_QPA_PLATFORM=hwcomposer /usr/bin/jolla-startupwizard-pre-user-session -plugin evdevtouch:/dev/input/event2 | 19:17 |
sledges | fails with above error ^^ | 19:17 |
sledges | so does lipstick | 19:18 |
*** Nokius_ is now known as Nokius | 19:19 | |
*** taaem <taaem!~taaem@x55b18b8c.dyn.telefonica.de> has joined #sailfishos-porters | 19:20 | |
*** dirkvl <dirkvl!~dirkvl@37.143.36.100> has joined #sailfishos-porters | 19:23 | |
*** krnlyng <krnlyng!~liar@77.117.82.198> has quit IRC (Ping timeout: 272 seconds) | 19:30 | |
*** krnlyng <krnlyng!~liar@77.116.88.154.wireless.dyn.drei.com> has joined #sailfishos-porters | 19:44 | |
*** phdeswer <phdeswer!~phdeswer@91-159-55-220.elisa-laajakaista.fi> has joined #sailfishos-porters | 19:54 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@2a01:e35:8bef:6f30:221:6aff:fe5c:4c82> has joined #sailfishos-porters | 20:29 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@2a01:e35:8bef:6f30:221:6aff:fe5c:4c82> has quit IRC (Client Quit) | 20:33 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@2a01:e35:8bef:6f30:221:6aff:fe5c:4c82> has joined #sailfishos-porters | 20:33 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@2a01:e35:8bef:6f30:221:6aff:fe5c:4c82> has quit IRC (Client Quit) | 20:34 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@2a01:e35:8bef:6f30:221:6aff:fe5c:4c82> has joined #sailfishos-porters | 20:34 | |
*** M4rtinK <M4rtinK!~M4rtinK@ip-89-177-124-111.net.upcbroadband.cz> has joined #sailfishos-porters | 20:36 | |
*** M4rtinK <M4rtinK!~M4rtinK@ip-89-177-124-111.net.upcbroadband.cz> has quit IRC (Client Quit) | 20:40 | |
*** electrolux is now known as electrolux_off | 20:51 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 21:03 | |
*** drFaustroll_ <drFaustroll_!~alin@opensuse/member/ealin> has quit IRC (Read error: Connection reset by peer) | 21:04 | |
*** sletta <sletta!~sletta@231.170.102.62.customer.cdi.no> has quit IRC (Ping timeout: 240 seconds) | 21:04 | |
*** minimec <minimec!~minimec@unaffiliated/minimec> has joined #sailfishos-porters | 21:13 | |
Nokius | humaneit: ping | 21:23 |
Nokius | !seen humaneit | 21:24 |
merbot | Nokius: humaneit was last seen in #sailfishos-porters 1 day, 1 hour, 15 minutes, and 21 seconds ago: <humaneit> damn, that one isn't released here, i would love to have it because of the amazing battery. The stores here offer very good discounts | 21:24 |
Nokius | :( | 21:24 |
*** Guhl <Guhl!~guhl@193-154-246-170.adsl.highway.telekom.at> has joined #sailfishos-porters | 21:28 | |
*** toomin <toomin!~HomoSapie@unaffiliated/toomin> has quit IRC (Ping timeout: 246 seconds) | 21:28 | |
*** M4rtinK <M4rtinK!~M4rtinK@ip-89-177-124-111.net.upcbroadband.cz> has joined #sailfishos-porters | 21:29 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has quit IRC (Quit: Konversation terminated!) | 21:32 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 21:33 | |
*** dirkvl <dirkvl!~dirkvl@37.143.36.100> has quit IRC (Ping timeout: 256 seconds) | 21:34 | |
*** Sfiet_Konstantin <Sfiet_Konstantin!~sk@2a01:e35:8bef:6f30:221:6aff:fe5c:4c82> has quit IRC (Ping timeout: 240 seconds) | 21:41 | |
*** Guhl <Guhl!~guhl@193-154-246-170.adsl.highway.telekom.at> has quit IRC (Read error: Connection reset by peer) | 21:46 | |
*** r0kk3rz <r0kk3rz!~chatzilla@host-92-23-137-172.as13285.net> has quit IRC (Ping timeout: 265 seconds) | 21:56 | |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 22:17 | |
*** Guhl <Guhl!~guhl@193-154-246-170.adsl.highway.telekom.at> has joined #sailfishos-porters | 22:33 | |
Guhl | piggz, just wanted to say that i solved the adreno driver issue | 22:36 |
Guhl | been having to old libs in the CM11 rom | 22:36 |
Guhl | from before we moved to ION | 22:36 |
Guhl | is it a know issue that the onscreen-keyboard does not come up? | 22:39 |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-xhgkczgvvjbvtjvi> has quit IRC (Ping timeout: 240 seconds) | 22:41 | |
*** harha <harha!~harha@a91-153-12-92.elisa-laajakaista.fi> has quit IRC (Quit: Leaving.) | 22:42 | |
*** bogn <bogn!uid134284@gateway/web/irccloud.com/x-xkijbltgkpqjwufk> has joined #sailfishos-porters | 22:43 | |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 22:54 | |
*** Guhl <Guhl!~guhl@193-154-246-170.adsl.highway.telekom.at> has quit IRC (Ping timeout: 240 seconds) | 22:55 | |
*** ghosalmartin <ghosalmartin!5215a909@gateway/web/freenode/ip.82.21.169.9> has joined #sailfishos-porters | 22:56 | |
sledges | Guhl: might be compositing issues there with vkb | 22:56 |
*** happy-dude <happy-dude!uid62780@gateway/web/irccloud.com/x-bednncsintakkfbr> has joined #sailfishos-porters | 22:57 | |
ghosalmartin | woah surfaceflinger doesnt instant segfault...it just hangs lol | 22:57 |
ghosalmartin | thats progress if i ever saw it | 22:57 |
*** dirkvl <dirkvl!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Ping timeout: 256 seconds) | 22:57 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has quit IRC (Quit: Konversation terminated!) | 23:05 | |
*** drFaustroll <drFaustroll!~alin@178.167.254.143.threembb.ie> has joined #sailfishos-porters | 23:05 | |
*** drFaustroll <drFaustroll!~alin@178.167.254.143.threembb.ie> has quit IRC (Changing host) | 23:05 | |
*** drFaustroll <drFaustroll!~alin@opensuse/member/ealin> has joined #sailfishos-porters | 23:05 | |
*** sletta <sletta!~sletta@231.170.102.62.customer.cdi.no> has joined #sailfishos-porters | 23:07 | |
*** krnlyng <krnlyng!~liar@77.116.88.154.wireless.dyn.drei.com> has quit IRC (Remote host closed the connection) | 23:16 | |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Ping timeout: 265 seconds) | 23:19 | |
*** CrKit <CrKit!~nekit@111.0.234.193> has joined #sailfishos-porters | 23:19 | |
*** krnlyng <krnlyng!~liar@83.175.90.24> has joined #sailfishos-porters | 23:19 | |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 23:22 | |
*** laxtlo <laxtlo!~to@85-76-2-29-nat.elisa-mobile.fi> has quit IRC (Ping timeout: 255 seconds) | 23:24 | |
*** dirkvl__ <dirkvl__!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 23:24 | |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Ping timeout: 256 seconds) | 23:27 | |
*** dirkvl_ <dirkvl_!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has joined #sailfishos-porters | 23:30 | |
*** laxtlo <laxtlo!~to@85-76-2-29-nat.elisa-mobile.fi> has joined #sailfishos-porters | 23:30 | |
*** dirkvl__ <dirkvl__!~dirkvl@52D91535.cm-11-1a.dynamic.ziggo.nl> has quit IRC (Ping timeout: 256 seconds) | 23:34 | |
*** ghosalmartin <ghosalmartin!5215a909@gateway/web/freenode/ip.82.21.169.9> has quit IRC (Quit: Page closed) | 23:39 | |
*** M4rtinK <M4rtinK!~M4rtinK@ip-89-177-124-111.net.upcbroadband.cz> has quit IRC (Quit: Odcházím) | 23:51 |
Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!