On Tue, Nov 5, 2019 at 8:56 AM Radovan Chovan <[email protected]> wrote: > > This is result of running command od Wheezie: > > root@beaglebone:/home/debian# sudo dpkg -i > linux-image-3.8.13-bone84_1wheezy_armhf.deb > Selecting previously unselected package linux-image-3.8.13-bone84. > (Reading database ... 62413 files and directories currently installed.) > Unpacking linux-image-3.8.13-bone84 (from > linux-image-3.8.13-bone84_1wheezy_armhf.deb) ... > Setting up linux-image-3.8.13-bone84 (1wheezy) ... > update-initramfs: Generating /boot/initrd.img-3.8.13-bone84 > > But after "sudo reboot" nothing changed > > root@beaglebone:~# uname -a > Linux beaglebone 3.8.13-bone50 #1 SMP Tue May 13 13:24:52 UTC 2014 armv7l > GNU/Linux > > So I need to copy some files to /boot/ as you mentioned, right?
Yeap, so here's the surgery: take a look at /boot/uboot/ ls -lh /boot/uboot/ #First backup everything: sudo mv /boot/uboot/zImage /boot/uboot/zImage_bak sudo mv /boot/uboot/initrd.img /boot/uboot/initrd.bak sudo mv /boot/uboot/dtbs/ /boot/uboot/dtbs_bak/ #Copy new DTBS: sudo mkdir -p /boot/uboot/dtbs/ sudo cp -v /boot/dtbs/3.8.13-bone84/*.dtb /boot/uboot/dtbs/ #does /boot/initrd.img-3.8.13-bone84 exist? if not: sudo update-initramfs -c -k 3.8.13-bone84 #copy kernel files: sudo cp -v /boot/vmlinuz-3.8.13-bone84 /boot/uboot/zImage sudo cp -v /boot/initrd.img-3.8.13-bone84 /boot/uboot/initrd.img and reboot.. Regards, -- Robert Nelson https://rcn-ee.com/ -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/CAOCHtYhi_mgbZ4gOsqmH%2Bx8O%2BR02fXGZeLVNX%2B%3DR3aO3iL0Rgg%40mail.gmail.com.
