Viewing 15 posts - 1 through 15 (of 21 total)
  • Author
    Posts
  • mosjka1mosjka1
    Participant
      Post count: 41

      update method the same like (4.3) http://www.roelbroersma.nl/forums/topic/hs-update-4-3/#post-1741

      upload firmware.dat to HS eg /home/temp directory
      
      a) rename firmware.dat file to firmware.zip
      b) extract INITRD file from firmware.zip (eg unzip)
      c) rename INITRD to INITRD.gz
      d) gzip -d INITRD.gz
      e) cpio -i < ./INITRD
      f) copy listed directories (/hs /lib /usr) to /
      g) restart HS, upload new project

      Version 4.4
      http://www.megafileupload.com/e2M7/firmware.dat

      IchIch
      Participant
        Post count: 38

        cp -r /tmp/hs /
        Error: cp: cannot create regular file `/hs/bin/hs_main´: Text file busy

        What can I do ?

        mosjka1mosjka1
        Participant
          Post count: 41

          cp -r -f /tmp/hs/* /hs
          cp -r -f /tmp/lib/* /lib
          cp -r -f /tmp/usr/* /usr

          or

          cp -r -f /tmp/hs/* /hs & cp -r -f /tmp/lib/* /lib & cp -r -f /tmp/usr/* /usr

          PaulPaul
          Participant
            Post count: 52

            thanks, successfully update my test vm :-)

            TerminatorTerminator
            Participant
              Post count: 2

              Hi,

              i tried to update from 4.0 to 4.4 like mentioned in your first post.

              All works fine but if i try:

              cp -r -f /tmp/lib/* /lib

              i get:

              Kernel Panic – not syncing: Try to kill init!

              If i reboot the System the startscreen displays Version 4.4 but i dont know if he copyed all files from lib?

              Any idea?

              fox_wingerfox_winger
              Participant
                Post count: 6

                I had the same issue when i tried it on the hardware.
                I updated my VMware successfully and just used DD to copy it all to my CF card, inserted into the server and it worked perfectly.

                You can also try to boot your server into safe mode and copy the files then

                TerminatorTerminator
                Participant
                  Post count: 2

                  Thanks for your help.

                  How xcan i boot in safemode?

                  Do you also have an howto dd from vm to cf card?

                  greetings

                  SlawekSlawek
                  Participant
                    Post count: 4

                    Problem “Kernel Panic – not syncing: Try to kill init!” could be related with order copy operation of directories, please copy with following order:
                    hs, lib and last usr, Noticed this same issue, usually when some library (libselinux.so.1) are overwritten, please try copy with mentioned order,
                    Regards,