-
AuthorPosts
-
mosjka1Participant2015-12-12 at 18:41Post 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.datIchParticipant2015-12-12 at 21:47Post count: 38cp -r /tmp/hs /
Error: cp: cannot create regular file `/hs/bin/hs_main´: Text file busyWhat can I do ?
mosjka1Participant2015-12-13 at 00:25Post count: 41cp -r -f /tmp/hs/* /hs
cp -r -f /tmp/lib/* /lib
cp -r -f /tmp/usr/* /usror
cp -r -f /tmp/hs/* /hs & cp -r -f /tmp/lib/* /lib & cp -r -f /tmp/usr/* /usr
PaulParticipant2015-12-13 at 11:30Post count: 52thanks, successfully update my test vm :-)
TerminatorParticipant2015-12-23 at 22:49Post count: 2Hi,
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_wingerParticipant2015-12-25 at 15:24Post count: 6I 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
TerminatorParticipant2015-12-25 at 23:42Post count: 2Thanks for your help.
How xcan i boot in safemode?
Do you also have an howto dd from vm to cf card?
greetings
SlawekParticipant2015-12-31 at 01:28Post count: 4Problem “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,