RetroPie forum home
    • Recent
    • Tags
    • Popular
    • Home
    • Docs
    • Register
    • Login
    Please do not post a support request without first reading and following the advice in https://retropie.org.uk/forum/topic/3/read-this-first

    RetroPie-Extra Repository - lr-samecdi

    Scheduled Pinned Locked Moved Help and Support
    pi5retropie-extralr-samecdiretropie
    28 Posts 5 Posters 5.4k Views
    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.
    • M
      mth75 @Folly
      last edited by

      @Folly Yes, I do now, thx for the explanation! For my full understanding ... the "Fatal error: required files are missing." is to be expected on the Pi5 for the time being?

      ExarKunIvE F 2 Replies Last reply Reply Quote 0
      • ExarKunIvE
        ExarKunIv @mth75
        last edited by

        @mth75 said in RetroPie-Extra Repository - lr-samecdi:

        "Fatal error: required files are missing." is to be expected on the Pi5 for the time being?

        if you are using the script from my repo, yes. it has not been updated with the new code that folly is messing with.
        once he is done with trying the different things, he will update the script and i will incorporate it into my repo

        RPi3B+ / 200GB/ RetroPie v4.5.14, RPi4 Model B 4gb / 256gb / RetroPie 4.8.2
        RPi5 4gb / 512gb / RetroPie 4.8.9 -Basic
        Maintainer of RetroPie-Extra .

        1 Reply Last reply Reply Quote 0
        • F
          Folly @mth75
          last edited by

          @mth75 said in RetroPie-Extra Repository - lr-samecdi:

          @Folly Yes, I do now, thx for the explanation! For my full understanding ... the "Fatal error: required files are missing." is to be expected on the Pi5 for the time being?

          Yes, if you have 32bit OS running then this behavior is expected..

          M 1 Reply Last reply Reply Quote 0
          • M
            mth75 @Folly
            last edited by

            @Folly said in RetroPie-Extra Repository - lr-samecdi:

            this behavior is expe

            But I'm running the 64-bits PiOS.

            F 1 Reply Last reply Reply Quote 0
            • F
              Folly @mth75
              last edited by Folly

              @mth75

              Did you add the swap to your module-script as suggested over here.

              Do you have the core installed ?
              (check for /opt/retropie/libretrocores/lr-same_cdi/same_cdi_libretro.so)

              Can you explain where you got the message from ?
              (runcommand.log or a Retropie install log)

              Are you having the BIOS file in the correct place ?
              (BIOS/same_cdi/bios/cdimono1.zip)

              1 Reply Last reply Reply Quote 0
              • F
                Folly @ExarKunIv
                last edited by Folly

                @ExarKunIv said in RetroPie-Extra Repository - lr-samecdi:

                @Folly said in RetroPie-Extra Repository - lr-samecdi:

                We could make it 64bit if the platform contains rpi5 agree ?

                If your code works. I have no problem going with it that way.

                Or have it switch on what it needs to compile depending on what OS type they are using

                Maybe something like this

                if isPlatform "odroid-n2"; then
                	/home/aresuser/ARES-Setup/fixmali.sh
                    elif isPlatform "rockpro64"; then
                    /usr/lib/arm-linux-gnueabihf/install_mali.sh
                	fi
                

                Not sure if that will work for you are trying

                I had a look at this code and I think it's not usable for what I want.
                I think both platforms run 64bit only so I think there is no need to filter on these platforms.

                I tested this platform independent code and it seems to work fine (code can be reduced see Edit):

                rp_module_flags="$([[ $(getconf LONG_BIT) == 32 && $(arch) == aarch64 ]] && echo !32bit)"
                

                It means that if a 32 userspace kernel is found that the !32bit flag is enabled.

                I think there is no way to use "RetroPie flags" for detecting that a 32 userspace kernel is found.

                Edit :

                Seems we can reduce the code to (*first example):

                rp_module_flags="$([[ $(arch) == aarch64 ]] && echo !32bit)"
                

                Means that the 64bit kernel is detected even if it runs in 32bit userspace.
                We know that the compilation fails for 32bit userspace and RetroPie will set the flag on 32bit if 32bit userspace is detected.
                Therefor no need for using the getconf LONG_BIT command.
                By disabling 32bit when the 64bit kernel is detected we should be good to go.

                What do you think of using this ?


                The code from above could be changed to :

                [[ $(arch) == aarch64 ]] && rp_module_flags="!32bit"
                

                However in the first example* we have to ability to add more flags in the same line if needed.

                ExarKunIvE 1 Reply Last reply Reply Quote 0
                • ExarKunIvE
                  ExarKunIv @Folly
                  last edited by

                  @Folly I'm good with using what works. I'm not picky with how it works, as long as in the end it works.

                  RPi3B+ / 200GB/ RetroPie v4.5.14, RPi4 Model B 4gb / 256gb / RetroPie 4.8.2
                  RPi5 4gb / 512gb / RetroPie 4.8.9 -Basic
                  Maintainer of RetroPie-Extra .

                  F 1 Reply Last reply Reply Quote 1
                  • F
                    Folly @ExarKunIv
                    last edited by

                    @ExarKunIv

                    Added a PR.

                    ExarKunIvE 1 Reply Last reply Reply Quote 1
                    • ExarKunIvE
                      ExarKunIv @Folly
                      last edited by

                      @Folly thanks again for your help with this

                      RPi3B+ / 200GB/ RetroPie v4.5.14, RPi4 Model B 4gb / 256gb / RetroPie 4.8.2
                      RPi5 4gb / 512gb / RetroPie 4.8.9 -Basic
                      Maintainer of RetroPie-Extra .

                      F 1 Reply Last reply Reply Quote 0
                      • F
                        Folly @ExarKunIv
                        last edited by

                        @ExarKunIv

                        Added another PR.
                        Seems the swap was missing and I renamed the filename so it's easier to use the retropie_packages.sh script.

                        1 Reply Last reply Reply Quote 1
                        • giandeejayG
                          giandeejay @Retrodade
                          last edited by giandeejay

                          @Retrodade What kind of Repository do you use for "retropie-extra", this ?
                          I think this works fine (but I haven't tested yet Philips CDI games):
                          https://github.com/Exarkuniv/RetroPie-Extra

                          But I tested it with many other emulators like:
                          "AetherSX2 - PS2 Emulators" runs in 60Fps with my Pi5.
                          "Sega Supermodel 3" runs very well with my Pi5.

                          1 Reply Last reply Reply Quote 1
                          • First post
                            Last post

                          Contributions to the project are always appreciated, so if you would like to support us with a donation you can do so here.

                          Hosting provided by Mythic-Beasts. See the Hosting Information page for more information.