*** spiiroin_ is now known as spiiroin | 09:29 | |
poetaster | rinigus, how do I deal licences that are unusual: https://github.com/poetaster/harbour-multimodal/blob/master/LICENSE | 12:23 |
---|---|---|
poetaster | rinigus, I mean, for chum | 12:23 |
Robbster | Hi all, is this the right place to assistance help for a XperiaX in a boot loop (sfos 4.3)? I'm trying recovery mode from mint linux and not getting the telnet to 10.42.66.66 working. tia. | 12:36 |
Robbster | I'm following instructions from: https://jolla.zendesk.com/hc/en-us/articles/360002996893-Xperia-devices-How-to-use-the-Recovery-Mode | 12:37 |
mal | Robbster: do you see anything in screen when you try to enter recovery mode? | 12:47 |
Robbster | @mal yes, the phone reports the expected message. I think that the issue lies with the laptop. when I disconnect and reconnect the usb cable, I get a usb0 network device on 192.168.0.0/24 network and I can't access the 10.42.66.66 that the phone is reporting. | 12:51 |
Robbster | my local lan is on 192.168.7.1/24. | 12:51 |
Robbster | when attempting the telnet, I get connection timed out :( | 12:52 |
Robbster | I'm going to try a different cable, but this is the cable that was used for the fastboot, so it should be fine... | 12:52 |
Robbster | dmesg reports:'Jolla Debug telnet on rndis0 10.42.66.66 - also running udhcpd' | 12:54 |
mal | and the network interface looks ok locally? | 13:02 |
Robbster | @mal, if I run ifconfig, there is no 10.x.x.x network configured, so that looks wrong. | 13:39 |
Robbster | @mal, ifconfig reports that the usb0 network device that was created when the network cable is inserted. | 13:44 |
Robbster | going to reboot the laptop to see if that changes things, brb... | 13:45 |
Robbster | @mal, local network configuration on the laptop was getting in the way and manually setting up the ip for the usb ethernet device. | 13:51 |
Robbster | set it to 'automatic' configuration and it is all working now - thanks for the help :) | 13:52 |
mal | good to hear it works now | 13:57 |
Robbster | recover mode seems to be working - still gotta recover the phone :) | 15:20 |
poetaster | Thaodan, with anarchy's permission I've created https://github.com/poetaster/harbour-multimodal | 15:29 |
poetaster | Thaodan, if you're still interested. | 15:30 |
rinigus | poetaster: as I don't know what such license, I wouldn't accept it into Chum. whether piggz agrees, I don't know. probably, you should contact some lawyers and ask them to explain it. or not use that software | 16:18 |
poetaster | rinigus, It's the sex pistols. Not a license. I think it's supposed to be 'public domain' so I'll ask him if I can do that. | 16:20 |
Thaodan | Ask him what he wants | 16:36 |
Thaodan | GPL would be great | 16:36 |
poetaster | Thaodan, I'll ask if that'll work. It's my default. | 16:42 |
rinigus | poetaster: no license, no go | 16:58 |
rinigus | :) | 16:58 |
poetaster | rinigus, a sex pistols anthem is a license to kill :) | 17:05 |
attah | poetaster: you messed with python... are there limitations on where my .py files can be? | 17:37 |
attah | I don't think it looks very good having it in qml/pages | 17:38 |
poetaster | attah, I always write to lib. | 18:12 |
poetaster | attah, but I do have stuff in qml too. | 18:13 |
attah | as in next to the qml directory? | 18:13 |
poetaster | attah, I meant that I write libraries to lib but have python functions in a subdir of qml, too. | 18:14 |
attah | cool, then i'll try and invent a convention of python next to qml | 18:14 |
poetaster | attah, I'm helping out with multimodal. there there is a 'src' directory next to qml. | 18:15 |
poetaster | https://github.com/poetaster/harbour-multimodal | 18:15 |
poetaster | attah, I'm not sure I like it. I'm moving toward lib/ | 18:15 |
attah | excellent | 18:15 |
attah | heh | 18:16 |
attah | ...if i only could figure out how to have rpmbuild or whatever it is called access my actual source files | 18:16 |
poetaster | what do you mean? | 18:16 |
attah | surely Qt doesn't get to monopolize actual file access? | 18:16 |
attah | i want to read a requirements.txt, from say top-level of my repo | 18:17 |
attah | and use that in the pip command in the rpm spec | 18:17 |
poetaster | ah, sure. | 18:17 |
poetaster | if you add it so qml copies it to the {data} target you can work with it. | 18:18 |
attah | And if i have to list it in .pro:OTHER_FILES i'll go mad | 18:18 |
poetaster | attah, if you look at the repo I posted: in the pro is a src and src.path. in the spec I use sed to modify files that have been installed. | 18:19 |
poetaster | {_datadir}%{name}/dir/dir/file.py mangled in the %post section. | 18:20 |
attah | but i thought the rpm spec was the entry point? | 18:20 |
poetaster | the rpm directory is root :) | 18:20 |
attah | i'm getting triggerd by having to faff with qt do do non qt stuff | 18:20 |
attah | brb | 18:21 |
poetaster | you can do it another way. | 18:21 |
poetaster | beer. | 18:21 |
attah | :) please share your wisdom | 18:23 |
poetaster | just other peoples code :) | 18:23 |
poetaster | depends, if you don't care for sdk at all, you can just do rpmbuild | 18:24 |
poetaster | the multi-modal guy does: https://github.com/poetaster/harbour-multimodal/blob/master/harbour-multimodal.spec.orig | 18:24 |
poetaster | tomin's build for patience deck is pur sfdk and it's really well structured | 18:25 |
attah | I don't mind the SDK, but i do mind the .pro file, especially for things i don't use the sdk for | 18:25 |
poetaster | BuildRoot: %{_tmppath}/%{name}-build | 18:25 |
poetaster | cp -vr qml $RPM_BUILD_ROOT/usr/share/harbour-multimodal/ | 18:26 |
poetaster | it depends at some point where you call the rpmbuild command from. | 18:27 |
attah | Sure, when i run sfdk, pwd is my repo... but in the SDK it is some half-arsed copy of it and it's driving me mad | 18:27 |
poetaster | read https://github.com/Tomin1/patience-deck | 18:29 |
poetaster | he describes a build process with 0 sdk interference. | 18:29 |
poetaster | I failed to get a compromise going, but I built it that way (with my mahjong in scheme mods) | 18:29 |
attah | Hmmm... but i do want the SDK for editing QML, and ctrl-r is pretty handy | 18:30 |
poetaster | Yeah, you have to strike a compromise. I just didn't find the time, but tomin's way can be modified. | 18:31 |
poetaster | It's all witchcraft :) | 18:34 |
attah | sigh... sys.path.append has stopped working on the device now... excellent | 18:48 |
Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!