• Recent
    • Unsolved
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login

    UEFI PXE on Dell Optiplex 7010 hangs

    Scheduled Pinned Locked Moved Unsolved
    FOG Problems
    4
    34
    13.5k
    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.
    • S
      Sebastian Roth Moderator
      last edited by

      @BardWood Ok, seems like it actually does see it as being a proper Intel NIC. I think we are on the right track. Though it definitely needs more work than I had expected. Keep it up and hopefully you can get a good video (60 fps!!) of it. This is where digital devices have a great advantage over our eyes.

      Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

      Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

      george1421G B 3 Replies Last reply Reply Quote 0
      • george1421G
        george1421 Moderator @Sebastian Roth
        last edited by george1421

        @sebastian-roth Well let me say I’ve very disappointed in this latest iphone upgrade. Its really driving me crazy at the moment.

        I finally have the download figured out. I’ll get you the link to the 05 = Wowsa! video in a moment, or when ever my iphone decides to email me the video
        Intersting messages in video

        00:16.0 (8086:1e3d class 0708000) has no driver
        00:16.1 cannot read PCI configuration: No such device http://ipxe.org/0x2c044087
        00:16.3 (8086:1e3d class 0708002) has no driver
        00:19.0 (8086:1502 class 020000) has driver "82579lm"
        has driver "PCI"
        disconnecting existing drivers
        

        Then loops forever

        Has driver "MII"
        DRIVER_START
        Refusing to start during disconnection
        has driver "SNP"
        DRIVER_START
        refusing to start during disconnection
        

        Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

        1 Reply Last reply Reply Quote 0
        • B
          BardWood @Sebastian Roth
          last edited by

          @sebastian-roth Unfortunately I can’t capture 60 FPS video on a Motorola Droid Turbo. I thought it was an artificial limitation since the camera is capable of it spec-wise but when I tried in Open Camera, I got the same message. I’ll see if I can get our photographer buf to do it on her iPhone 6.

          1 Reply Last reply Reply Quote 0
          • B
            BardWood @Sebastian Roth
            last edited by

            @sebastian-roth OK have a ~1Gb video file I’m trying to upload to flickr of 05 but a quick glance tells me it’s scrolling the same info in a loop. Here is a screenshot:

            0_1510172093527_05_ipxe.jpg

            B 1 Reply Last reply Reply Quote 0
            • B
              BardWood @BardWood
              last edited by

              @sebastian-roth here is the video of 05 on flickr https://www.flickr.com/gp/138098812@N03/D0569a

              george1421G 1 Reply Last reply Reply Quote 0
              • george1421G
                george1421 Moderator @BardWood
                last edited by

                @bardwood FWIW: Your video is repeating in the same spot as mine.

                It would be interesting to know what is causing the “Disconnecting existing drivers” line to post. I think that may be the root of the issue.

                Please help us build the FOG community with everyone involved. It's not just about coding - way more we need people to test things, update documentation and most importantly work on uniting the community of people enjoying and working on FOG!

                1 Reply Last reply Reply Quote 0
                • S
                  Sebastian Roth Moderator
                  last edited by

                  @BardWood Wow! You’ve done an amazing job getting a stable picture with the camera and I am sure we got all the information from that debug build in the picture you posted! I am still watching the video just to make absolutely sure we don’t miss anything else. Thanks heaps for that.

                  I will dig through the code and hopefully will find what’s up here. Though we might need to do more of these rounds I’m afraid.

                  Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                  Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                  1 Reply Last reply Reply Quote 0
                  • S
                    Sebastian Roth Moderator
                    last edited by Sebastian Roth

                    @BardWood @george1421 Hmmm, digging through the code I get the impression that we are pretty close already. Running that same binary on a different machine not having this issue I see:

                    ...
                    EFIPCI ... has driver "82579lm"
                    EFIDRV ... has driver "PCI"
                    EFIDRV ... disconnecting existing drivers
                    EFIDRV ... connecting new drivers
                    EFIPCI ... has driver "82579lm"
                    EFIDRV ... has driver "PCI"
                    EFIDRV ... DRIVER_START
                    EFIPCI ... has driver "82579lm"
                    EFIPCI ... using driver "82579lm"
                    EFIDRV ... using driver "PCI"
                    ...
                    

                    As you see there is kind of a handshake going on, first disconnecting existing drivers which I suppose might be drivers loaded by UEFI firmware beforehand. Then connecting new drivers (the iPXE driver I suppose) and finally using driver.

                    On the Dell 7010 though we don’t see the connecting new drivers message. The “funny” thing is that in the code between “disconnecting existing drivers” and “connecting new drivers” there are only a dozen lines of code - all in the very same function. My guess is that something goes wrong when iPXE tries to disconnect the drivers and is in a state of “trying to disconnect” from then on as we see from the messages saying “refusing to start during disconnection”.

                    So I compiled the next binary 07_ipxe.efi for you which should dump a lot of things like the actual EFI protocol calls. I also added some sleeps to the code so it hopefully doesn’t scroll past too fast. Although I can’t add sleeps in the middle of EFI protocol calls so it will be a challenge to get a clear picture/video again.

                    Edit: Updated the iPXE binary number as I somehow mixed those up with a different debug… 07 is definitely the newest one here.

                    Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                    Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                    B 1 Reply Last reply Reply Quote 0
                    • B
                      BardWood @Sebastian Roth
                      last edited by

                      @sebastian-roth I’m not sure a video is necessary since the message loops and the full message is captured in this image but am happy to oblige if it helps.

                      07_ipxe =
                      0_1510250722680_07_ipxe.jpg

                      1 Reply Last reply Reply Quote 1
                      • S
                        Sebastian Roth Moderator
                        last edited by

                        @BardWood I am sorry for loosing track of this. As mentioned in the private chat there is an interesting answer on the iPXE forum: http://forum.ipxe.org/showthread.php?tid=7877

                        Would you be able to test the stuff described there. Do you need assistance with that? This seems to be very specific issue and we need you to try things out on the hardware to get an idea.

                        Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                        Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                        B 1 Reply Last reply Reply Quote 0
                        • B
                          BardWood @Sebastian Roth
                          last edited by

                          @sebastian-roth Greetings. I had to get the first rev of W10 images out so the 7010 image is legacy this time around. I should have time this week or next. I did look at the link and didn’t look terribly difficult. I’ll give it a crack.

                          1 Reply Last reply Reply Quote 1
                          • S
                            Sebastian Roth Moderator
                            last edited by

                            @BardWood Bump… 🙂 Any news on this?

                            Web GUI issue? Please check apache error (debian/ubuntu: /var/log/apache2/error.log, centos/fedora/rhel: /var/log/httpd/error_log) and php-fpm log (/var/log/php*-fpm.log)

                            Please support FOG if you like it: https://wiki.fogproject.org/wiki/index.php/Support_FOG

                            1 Reply Last reply Reply Quote 0
                            • 1
                            • 2
                            • 2 / 2
                            • First post
                              Last post

                            159

                            Online

                            12.1k

                            Users

                            17.3k

                            Topics

                            155.3k

                            Posts
                            Copyright © 2012-2024 FOG Project