CarbontatedCaffeine | Hey everyone, is someone here able to help me pinpoint what's stopping lipstick from starting? | 05:04 |
---|---|---|
CarbontatedCaffeine | https://pastebin.com/6w58jfz2 | 05:04 |
CarbontatedCaffeine | I see stuff like /usr/sbin/dummy_compositor: unrecognized option '--hwc-restart' | 05:04 |
CarbontatedCaffeine | Theres 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 it | 05:07 |
*** amccarthy is now known as Guest206 | 05:18 | |
*** amccarthy_ is now known as amccarthy | 05:18 | |
*** amccarthy is now known as Guest212 | 06:08 | |
*** amccarthy_ is now known as amccarthy | 06: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 |
CarbontatedCaffeine | bad sign? | 07:40 |
T42 | <b100dian> dummy_compositor means you have a too new dhd (droid-hal-device) submodule, see the recommended commit in hadk-hot | 07:51 |
CarbontatedCaffeine | Thanks :D | 07:53 |
CarbontatedCaffeine | I'll take a looksie | 07:53 |
CarbontatedCaffeine | Cheers, I switched to that commit | 08:08 |
CarbontatedCaffeine | I'm gonna see if it works | 08:08 |
CarbontatedCaffeine | https://pastebin.com/x1gpdX4y | 08:29 |
CarbontatedCaffeine | I couldn't find this error anywhere | 08:32 |
CarbontatedCaffeine | Where do these files come from? | 08:32 |
CarbontatedCaffeine | Oh I realized | 08:33 |
CarbontatedCaffeine | I need to downgrade droidmedia too | 08:33 |
CarbontatedCaffeine | Oh, it is the same release? | 08:38 |
CarbontatedCaffeine | so I'm not sure what's happening here | 08: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.serv | 09:28 |
CarbontatedCaffeine | I'm not exactly sure if I need this | 09: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 reason | 09:36 |
T42 | <elros34> most likely wrong fixup-mountpoints | 09:37 |
CarbontatedCaffeine | It's not wrong | 09:38 |
CarbontatedCaffeine | that I know of | 09:38 |
CarbontatedCaffeine | I've fixed that twice | 09: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 |
CarbontatedCaffeine | I don't see this mentioned | 09:40 |
CarbontatedCaffeine | found it | 09:42 |
CarbontatedCaffeine | okay 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/*.mount | 09:45 |
CarbontatedCaffeine | "/dev/block/platform/soc/624000.ufshc/by-name/system" | 09:49 |
CarbontatedCaffeine | but, it has system_a or system_b | 09:49 |
CarbontatedCaffeine | system isn't found | 09: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 conversion | 09:53 |
CarbontatedCaffeine | I'll check | 09:54 |
T42 | <elros34> IIRC there is even explicit note about _a/_b suffixes in hadk-hot | 09:54 |
CarbontatedCaffeine | "/dev/block/platform/soc/624000.ufshc/by-name/system / ext4 ro,barrier=1 wait,slotselect,verify" | 09:55 |
CarbontatedCaffeine | ah lookie here | 09:55 |
CarbontatedCaffeine | What can I change it to | 09:56 |
T42 | <elros34> see there is no _a/_b suffix in your fstab | 09:56 |
CarbontatedCaffeine | I realize that now | 09:57 |
CarbontatedCaffeine | but 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 |
CarbontatedCaffeine | I haven't used sed before | 10:01 |
CarbontatedCaffeine | other than copy / paste | 10: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 that | 10:03 |
T42 | <elros34> in human language: replaces 'block/platform/soc/624000.ufshc/by-name/system_a' with 'sda33' in fstab | 10:04 |
CarbontatedCaffeine | ohhhh | 10:04 |
CarbontatedCaffeine | I don't always catch on easily | 10:04 |
CarbontatedCaffeine | but that's why I'm here! To learn | 10:05 |
T42 | <elros34> no, that is common for new porters | 10:05 |
CarbontatedCaffeine | Just to measure twice | 10:08 |
CarbontatedCaffeine | sda33 / ext4 ro,barrier=1 wait,slotselect,verify | 10:08 |
CarbontatedCaffeine | sounds right? | 10:08 |
CarbontatedCaffeine | wait, 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/sdaxx | 10:11 |
CarbontatedCaffeine | okay I'm confused now | 10:12 |
CarbontatedCaffeine | https://pastebin.com/tYd64KvL | 10:12 |
CarbontatedCaffeine | Here is fstab.common | 10: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 understanding | 10:15 |
CarbontatedCaffeine | Oh, right | 10:15 |
CarbontatedCaffeine | okay I got it | 10: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 there | 10:17 |
CarbontatedCaffeine | Alright | 10:18 |
CarbontatedCaffeine | I don't even have /system | 10:21 |
CarbontatedCaffeine | Do I need to recompile? I edited the .mount file | 10:25 |
CarbontatedCaffeine | on the phone | 10:25 |
CarbontatedCaffeine | and reloaded the systemctl daemon | 10:25 |
CarbontatedCaffeine | argh I just don't think I understand what you're telling me unfortunately | 10:30 |
T42 | <elros34> what mount units you have on device? | 10:34 |
CarbontatedCaffeine | where is this | 10:34 |
CarbontatedCaffeine | iirc system is mounted at / | 10:35 |
CarbontatedCaffeine | for my device | 10: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 should | 10:35 |
CarbontatedCaffeine | https://pastebin.com/DhpjZsfB | 10:37 |
CarbontatedCaffeine | ^ system.mount | 10:37 |
CarbontatedCaffeine | https://pastebin.com/AyjVaf6f | 10:38 |
CarbontatedCaffeine | ^ edited system_root.mount | 10:38 |
T42 | <elros34> it's wrong, it must have "What=/dev/sda33" | 10:40 |
CarbontatedCaffeine | Which one | 10:40 |
CarbontatedCaffeine | system_root, or system | 10:40 |
T42 | <elros34> system_root obviously | 10:41 |
CarbontatedCaffeine | oki | 10:41 |
CarbontatedCaffeine | Good news, /system is now there | 10:43 |
CarbontatedCaffeine | no vendor as I said | 10:43 |
CarbontatedCaffeine | I'll check the same place as before | 10:43 |
CarbontatedCaffeine | Uhm, there's nothing in vendor :P | 10:45 |
CarbontatedCaffeine | Oh system_root is there too | 10:46 |
CarbontatedCaffeine | How do I make a symlink for vendor? | 10:48 |
CarbontatedCaffeine | https://pastebin.com/XEYPyrMN | 10:59 |
CarbontatedCaffeine | Here's the current journal | 10:59 |
CarbontatedCaffeine | output | 10:59 |
*** amccarthy is now known as Guest232 | 12:37 | |
*** amccarthy_ is now known as amccarthy | 12: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 |
CarbontatedCaffeine | Is the website down for this file? | 23:30 |
CarbontatedCaffeine | It's giving me a 404 in web browser | 23:30 |
CarbontatedCaffeine | nevermind I just made a whoops | 23:31 |
CarbontatedCaffeine | forgot to set "RELEASE=" | 23:32 |
Generated by irclog2html.py 2.17.1 by Marius Gedminas - find it at https://mg.pov.lt/irclog2html/!