1

I have an SD-card (with pi-topDashboard a raspian-version with drivers and tools for the Pi-Top-laptop) that boots just fine in a PI-2 model B, but fails to boot on the newer PI-3 model B.

Instead of the "normal" boot messages I get only a multicolored image on the HDMI-monitor.

Unfortunately I can't seem to find any mention of this using Google, since searching often requires knowledge of pertinent terms that describe the problem or the solution.

Any tips how to approach this?

A list of what I've done: - booted the PI 2 from the card, used apt-get to update and upgrade

lexu
  • 111
  • 6
  • My guess is the install on your SD card is not compatible with the Pi 3, so I suggest backing up all of your important documents and flashing the SD card with their latest Pi compatible OS. - But that depends on the OS your using, could you be a little more clear? – Darth Vader May 21 '16 at 11:25

1 Answers1

1

Why this is the case I'm not sure, since the 2 and 3 seem to use the same kernel (but if you look there, there is a 3 specific device tree overlay). That makes this fairly simple, so here's what you can try -- it should work, but I won't make any promises since I don't have a Pi 3 to try it on.

First, get a new Raspbian image -- you might as well use the lite version since it is a smaller download. Note it does not matter if the OS you are using is not Raspbian. We're only going to get a few little things in the boot partition. An exception would be if you are using NOOBs or BerryBoot. It may work with NOOBs, I'm sure it won't work without some adaption for BerryBoot.

Mount the image as described here. You only have to mount the first one. A couple of caveats:

  • Beware new Raspbian images have a different partition offset than in that example. Copy the methodology, do not simply cut'n'paste the numbers because it will not work.

  • While this may be easier using another computer running linux, presuming your SD card is big enough to hold that image, you could do it on a running pi.

Once you have the image mounted, backup your existing boot partition. This is not hard since it is only 50-60 MB. None of it is really used after boot. You could also just copy out anything in particular you want to keep, particularly cmdline.txt and config.txt if you have customized those.

Check to make sure you really do have the boot partition in the image file mounted and accessible. It will look pretty similar to your own. Once you are sure, delete everything in your existing boot partition. Now copy everything from the boot partition in the new image, which should contain two different kernels, one for the pi A/B/+, and one for the Pi 2/3 (kernel7.img). Check to make sure there's a bcm2710-rpi-3-b.dtb file there.

Reboot. If you have modified config.txt, etc., don't replace them until you try rebooting first. This way if it works, then you replace config.txt with your own, you have a clue as to what is to blame.

goldilocks
  • 58,859
  • 17
  • 112
  • 227