UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    Call for testing: Samsung S3 Neo (s3ve3g) owners

    Scheduled Pinned Locked Moved Porting
    97 Posts 13 Posters 26.1k Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
      Reply
      • Reply as topic
      Log in to reply
      This topic has been deleted. Only users with topic management privileges can see it.
      • K Offline
        kitwiz555 @flohack
        last edited by

        @Flohack can't you use helium 9, because all we do knows that s3 neo all 3 models have lineage os 16 so it would help to fix a lot of problems as the camera and ril problems

        flohackF 1 Reply Last reply Reply Quote 0
        • flohackF Offline
          flohack @kitwiz555
          last edited by

          @kitwiz555 Maybe, I did not look into whats needed for Halium 9, and how much work it would be, I started the port at a time when support for 9 was not even a thing πŸ˜‰

          My languages: πŸ‡¦πŸ‡Ή πŸ‡©πŸ‡ͺ πŸ‡¬πŸ‡§ πŸ‡ΊπŸ‡Έ

          1 Reply Last reply Reply Quote 0
          • B Offline
            bosito7
            last edited by bosito7

            Hello @Flohack , thanks for the hard work. I was pleased to see that there are some people out there working on porting ubuntu to S3.

            I do own an S3 i9300 1GB RAM. I checked and sadly is not the same hardware (CPU/GPU) as S3 Neo so the compiled kernel link on the guide does not work.

            Do you know if there is any recent work around i9300 device? If so could you please point me in the right direction? Thanks in advance.
            So far the best info I found is this:
            https://forum.xda-developers.com/galaxy-s3/orig-development/discontinued-ubuntu-touch-13-10-builds-t2315397/page23
            https://wiki.ubuntu.com/Touch/Devices/i9300
            But half of the links do not work

            I do have some Linux and programming skills and I am willing to collaborate doing a Ubuntu port for i9300. I will need some guidance in the beginning though.

            BTW I added some info that might help others on the port installing instructions: https://pad.ubports.com/p/samsung-s3neo-alphatesting
            I hope is ok

            Regards

            flohackF 1 Reply Last reply Reply Quote 0
            • flohackF Offline
              flohack @bosito7
              last edited by

              @bosito7 Hi, yes this is only for S3 Neo s3ve3g, which has Kernel 3.4 luckily. Sadly S3 has only Kernel 3.0 I think, and thats really really low, even if you get it ported, it will not be easily maintainable through the major migration to 20.04 that we are preparing.

              A lot of kernel patches that might be needed are only available for 3.4 kernel onwards, as well as systemd wont run on this kernel easily. So while it might be fun trying to port it, donΒ΄t expect it will be a good daily driver in the end.

              I am saying this because I started on the S3 and gave up at a certain point. Also I am not sure you wanna try to run it off a LineageOS 14.1 build, if there is an official one, you could still try it. You basically need to follow http://docs.ubports.com/en/latest/porting/halium_7-1/index.html

              Please do not use any ancient resources for this device, this is all outdated and not compatible anymore with how the current Ubuntu Touch works.

              My languages: πŸ‡¦πŸ‡Ή πŸ‡©πŸ‡ͺ πŸ‡¬πŸ‡§ πŸ‡ΊπŸ‡Έ

              1 Reply Last reply Reply Quote 0
              • H Offline
                hsce1
                last edited by

                I have gathered some information for experimenting on the FM radio topic with the S3 Neo. After some digging I came across this documentation https://github.com/mer-hybris/hadk-faq#fm-radio. Is it possible that most of the changes can be done on a running device? Or am I getting it wrong?

                11 FM radio
                11.1 Qualcomm

                1. Needs a device with suitable FM radio hardware and a kernel defconfig containing CONFIG_RADIO_IRIS=y (CONFIG_RADIO_IRIS=m if fail to build IRIS_TRANSPORT as module) and CONFIG_RADIO_IRIS_TRANSPORT=m (or =y)
                2. If your CONFIG_RADIO_IRIS_TRANSPORT is built-in then this is not needed, however if you have problems try building CONFIG_RADIO_IRIS_TRANSPORT as a module: add (adapt to fit your device if needed) https://github.com/mlehtima/droid-config-fp2-sibon/blob/master/sparse/lib/systemd/system/droid-fm-up.service and https://github.com/mlehtima/droid-config-fp2-sibon/blob/master/sparse/lib/systemd/system/bluetooth.service.wants/droid-fm-up.service
                3. Sometimes device permissions are wrong (root owner), in this case add https://github.com/mlehtima/droid-config-fp2-sibon/blob/master/sparse/lib/udev/rules.d/999-droid-fm.rules to your droid-configs repo (or directly to device for testing)
                4. Add qt5-qtmultimedia-plugin-mediaservice-irisradio to patterns (or install directly to device for testing)
                5. Add https://github.com/mlehtima/droid-config-fp2-sibon/blob/master/sparse/etc/pulse/xpolicy.conf.d/fmradio.conf to your droid-configs repo (or directly to device for testing)
                6. Starting from Sailfish OS 2.0.2 FM radio Media app plugin jolla-mediaplayer-radio can be added to patterns.

                On my S3 Neo running UT, it seems that point 1 and 2 are satisfied:
                zcat /proc/config.gz | grep -n RADIO_IRIS gives:

                2587:CONFIG_RADIO_IRIS=y
                2588:CONFIG_RADIO_IRIS_TRANSPORT=y
                

                Regarding point 3. It seems to me that KERNEL=="radio[0-9]*", OWNER="audio", GROUP="audio" would have to be added since
                cat ~/../../android/system/halium/lib/udev/rules.d/70-android.rules | grep radio0 returns:

                ACTION=="add", KERNEL=="radio0", OWNER="system", GROUP="system", MODE="0640"
                ACTION=="add", KERNEL=="radio0", OWNER="fm_radio", GROUP="fm_radio", MODE="0640"
                

                No idea how to check for the other points.

                I know there is no FM radio app in the open store yet but could it work to build something quickly using this https://doc.qt.io/archives/qt-5.6/qml-qtmultimedia-radio.html?

                Unfortunately I have no experience in porting yet but if someone could give me a bit of guidance through the steps above, I'd be happy to sacrifice my S3 Neo for testing.

                flohackF 1 Reply Last reply Reply Quote 0
                • flohackF Offline
                  flohack @hsce1
                  last edited by

                  @hsce1 Cool I can change the udev rules for you and then we can try this maybe πŸ˜‰

                  Note that I am working on the installer support currently, so if thats done you have it much easier to install newer versions of the system.

                  My languages: πŸ‡¦πŸ‡Ή πŸ‡©πŸ‡ͺ πŸ‡¬πŸ‡§ πŸ‡ΊπŸ‡Έ

                  1 Reply Last reply Reply Quote 0
                  • H Offline
                    hsce1
                    last edited by

                    Cool! Installer support would be amazing! Thanks a lot for all your hard work!

                    libremaxL 1 Reply Last reply Reply Quote 0
                    • libremaxL Offline
                      libremax @hsce1
                      last edited by

                      @hsce1 said :

                      Thanks a lot for all your hard work!

                      IT people never work hard, they just fake it!

                      Donate anonymously 1€/$ by year to UBports, all Ubuntu Touch users can do it ! Demonstration:
                      https://forums.ubports.com/topic/1262/donate-anonymously-1-by-year-to-ubports-all-ubuntu-touch-users-can-do-it-demonstration/

                      H 1 Reply Last reply Reply Quote 0
                      • H Offline
                        hsce1 @libremax
                        last edited by

                        @libremax That's what I wanted to say πŸ˜‰

                        1 Reply Last reply Reply Quote 0
                        • flohackF Offline
                          flohack
                          last edited by

                          Dear All,

                          I suggest to split up various questions from this thread into smaller posts in the new subforum https://forums.ubports.com/category/62/samsung-s3-neo , and we let this thread alone, eventually closing it.

                          For example, the radio suggestion can be a separate thread probably, but also other questions. See my first post there regarding installer, unfortunately still not there 😞

                          BR

                          My languages: πŸ‡¦πŸ‡Ή πŸ‡©πŸ‡ͺ πŸ‡¬πŸ‡§ πŸ‡ΊπŸ‡Έ

                          1 Reply Last reply Reply Quote 0
                          • flohackF Offline
                            flohack
                            last edited by

                            Good News! Installer is finished!
                            The pull request being prepared, so I close this thread here, and, as menstioned in the previous post, please move your discussions to the subforum.

                            Note that you might need to update your installer, older versions might haave issues with flashing the phone with the Heimdall tool.

                            BR Florian

                            My languages: πŸ‡¦πŸ‡Ή πŸ‡©πŸ‡ͺ πŸ‡¬πŸ‡§ πŸ‡ΊπŸ‡Έ

                            1 Reply Last reply Reply Quote 0
                            • H hsce1 referenced this topic on
                            • mardyM mardy referenced this topic on
                            • First post
                              Last post