Monday, 2023-05-15

CarbontatedCaffeineHey everyone, is someone here able to help me pinpoint what's stopping lipstick from starting?05:04
CarbontatedCaffeinehttps://pastebin.com/6w58jfz205:04
CarbontatedCaffeineI see stuff like /usr/sbin/dummy_compositor: unrecognized option '--hwc-restart'05:04
CarbontatedCaffeineTheres a lot of little things like *something or rather.so is missing* I tried checking through logs, hadk faq/hot but I didn't end up finding what exactly is hindering it05:07
*** amccarthy is now known as Guest20605:18
*** amccarthy_ is now known as amccarthy05:18
*** amccarthy is now known as Guest21206:08
*** amccarthy_ is now known as amccarthy06:08
CarbontatedCaffeine"/bin/sh: can't open '/usr/bin/droid/droid-hal-early-init.sh': No such file or directory"07:39
CarbontatedCaffeine"nohup: can't execute '/sbin/droid-hal-init': No such file or directory"07:39
CarbontatedCaffeinebad sign?07:40
T42<b100dian> dummy_compositor means you have a too new dhd (droid-hal-device) submodule, see the recommended commit in hadk-hot07:51
CarbontatedCaffeineThanks :D07:53
CarbontatedCaffeineI'll take a looksie07:53
CarbontatedCaffeineCheers, I switched to that commit08:08
CarbontatedCaffeineI'm gonna see if it works08:08
CarbontatedCaffeinehttps://pastebin.com/x1gpdX4y08:29
CarbontatedCaffeineI couldn't find this error anywhere08:32
CarbontatedCaffeineWhere do these files come from?08:32
CarbontatedCaffeineOh I realized08:33
CarbontatedCaffeineI need to downgrade droidmedia too08:33
CarbontatedCaffeineOh, it is the same release?08:38
CarbontatedCaffeineso I'm not sure what's happening here08:38
CarbontatedCaffeine"/ # journalctl -u droid-bootctl.service -- Logs begin at Wed 2023-02-15 18:03:09 EET, end at Wed 2023-02-15 18:17:28 EET. -- Feb 15 18:03:10 PixelXL systemd[1]: Starting Droid bootctl... Feb 15 18:03:10 PixelXL sh[3757]: /usr/bin/droid/droid-bootctl.sh: line 4: /usr/libexec/droid-hybris/system/bin/bootctl: not found Feb 15 18:03:10 PixelXL sh[3757]: Marking boot as successful Feb 15 18:03:10 PixelXL systemd[1]: droid-bootctl.serv09:28
CarbontatedCaffeineI'm not exactly sure if I need this09:29
T42<elros34> you need to read logs from the top and first error you should worry about is system_root.mount failing for some reason09:36
T42<elros34> most likely wrong fixup-mountpoints09:37
CarbontatedCaffeineIt's not wrong09:38
CarbontatedCaffeinethat I know of09:38
CarbontatedCaffeineI've fixed that twice09:38
CarbontatedCaffeine"you need to read logs from the top and first error you should worry about is system_root.mount failing for some reason"09:40
CarbontatedCaffeineI don't see this mentioned09:40
CarbontatedCaffeinefound it09:42
CarbontatedCaffeineokay so how do I know if it's wrong or right then?09:42
CarbontatedCaffeine(thanks)09:43
T42<elros34> 'cat' it and see if it has by-name path (wrong fixup-mountpoints) or block device. Path is /usr/lib/systemd/system/*.mount09:45
CarbontatedCaffeine"/dev/block/platform/soc/624000.ufshc/by-name/system"09:49
CarbontatedCaffeinebut, it has system_a or system_b09:49
CarbontatedCaffeinesystem isn't found09:49
CarbontatedCaffeine"-e 's block/platform/soc/624000.ufshc/by-name/system_a sda33 ' \             -e 's block/platform/soc/624000.ufshc/by-name/system_b sda34 ' \"09:52
T42<elros34> I bet this by-name path is different in your fstab and that is all about: fstab -> systemd mount unit conversion09:53
CarbontatedCaffeineI'll check09:54
T42<elros34> IIRC there is even explicit note about _a/_b suffixes in hadk-hot09:54
CarbontatedCaffeine"/dev/block/platform/soc/624000.ufshc/by-name/system     /                   ext4    ro,barrier=1                wait,slotselect,verify"09:55
CarbontatedCaffeineah lookie here09:55
CarbontatedCaffeineWhat can I change it to09:56
T42<elros34> see there is no _a/_b suffix in your fstab09:56
CarbontatedCaffeineI realize that now09:57
CarbontatedCaffeinebut what must I do? Do I put _a/_b at the end?09:57
T42<elros34> this is converstion from fstab -> systemd mount, simple 'sed' command which replaces one string with another so?09:59
CarbontatedCaffeineI haven't used sed before10:01
CarbontatedCaffeineother than copy / paste10:01
T42<elros34> it doesn't matter, like I said it just find first string in whole fstab and replace it with second (see your fixup-mountpoint entry you pasted)10:02
T42<elros34> it's really simple as that10:03
T42<elros34> in human language: replaces  'block/platform/soc/624000.ufshc/by-name/system_a'  with 'sda33' in fstab10:04
CarbontatedCaffeineohhhh10:04
CarbontatedCaffeineI don't always catch on easily10:04
CarbontatedCaffeinebut that's why I'm here! To learn10:05
T42<elros34> no, that is common for new porters10:05
CarbontatedCaffeineJust to measure twice10:08
CarbontatedCaffeinesda33     /                   ext4    ro,barrier=1                wait,slotselect,verify10:08
CarbontatedCaffeinesounds right?10:08
CarbontatedCaffeinewait, sorry "block/platform/soc/624000.ufshc/by-name/sda33"10:10
CarbontatedCaffeine?10:10
T42<elros34> no where do you see such a string in fstab? There is only block/platform/soc/624000.ufshc/by-name/system no block/platform/soc/624000.ufshc/by-name/system_a nor block/platform/soc/624000.ufshc/by-name/sdaxx10:11
CarbontatedCaffeineokay I'm confused now10:12
CarbontatedCaffeinehttps://pastebin.com/tYd64KvL10:12
CarbontatedCaffeineHere is fstab.common10:12
T42<elros34> I do not know how I can explain it then. I wrote instruction in hadk-hot, read it or just use: "-e 's block/platform/soc/624000.ufshc/by-name/system sda33 '   \" and similar for other partitions without understanding10:15
CarbontatedCaffeineOh, right10:15
CarbontatedCaffeineokay I got it10:15
T42<elros34> while you are at it check if you don't have vendor partition if not you may need /system/vendor -> /vendor/ symlink if it's not already there10:17
CarbontatedCaffeineAlright10:18
CarbontatedCaffeineI don't even have /system10:21
CarbontatedCaffeineDo I need to recompile? I edited the .mount file10:25
CarbontatedCaffeineon the phone10:25
CarbontatedCaffeineand reloaded the systemctl daemon10:25
CarbontatedCaffeineargh I just don't think I understand what you're telling me unfortunately10:30
T42<elros34> what mount units you have on device?10:34
CarbontatedCaffeinewhere is this10:34
CarbontatedCaffeineiirc system is mounted at /10:35
CarbontatedCaffeinefor my device10:35
T42<elros34> check the path I told you 1h ago, for sure you have system.mount, if system_root.mount will work then system.mount also should10:35
CarbontatedCaffeinehttps://pastebin.com/DhpjZsfB10:37
CarbontatedCaffeine^ system.mount10:37
CarbontatedCaffeinehttps://pastebin.com/AyjVaf6f10:38
CarbontatedCaffeine^ edited system_root.mount10:38
T42<elros34> it's wrong, it must have "What=/dev/sda33"10:40
CarbontatedCaffeineWhich one10:40
CarbontatedCaffeinesystem_root, or system10:40
T42<elros34> system_root obviously10:41
CarbontatedCaffeineoki10:41
CarbontatedCaffeineGood news, /system is now there10:43
CarbontatedCaffeineno vendor as I said10:43
CarbontatedCaffeineI'll check the same place as before10:43
CarbontatedCaffeineUhm, there's nothing in vendor :P10:45
CarbontatedCaffeineOh system_root is there too10:46
CarbontatedCaffeineHow do I make a symlink for vendor?10:48
CarbontatedCaffeinehttps://pastebin.com/XEYPyrMN10:59
CarbontatedCaffeineHere's the current journal10:59
CarbontatedCaffeineoutput10:59
*** amccarthy is now known as Guest23212:37
*** amccarthy_ is now known as amccarthy12:37
CarbontatedCaffeine"Error <creator>[05/15 23:29:12] : URLGrabber error: https://releases.jolla.com/releases//jolla-hw/adaptation-common/aarch64/repodata/repomd.xml - [Errno 14] HTTPS Error 404 - Not Found"23:30
CarbontatedCaffeineIs the website down for this file?23:30
CarbontatedCaffeineIt's giving me a 404 in web browser23:30
CarbontatedCaffeinenevermind I just made a whoops23:31
CarbontatedCaffeineforgot to set "RELEASE="23:32

Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!