On a side note, I'm jealous that you already got your Pi Pico 2! Mine's still on preorder from SparkFun.
@dougg3 , thanks for your continued help.. you can probably relax, your Pico 2 will arrive and you'll have ported BlueSCSI to it before I've gotten Blinky to work on mine

!
Anyway, I managed to 'resolve' the issue. I found out my PICO path definitions hadn't been all properly set up in ~/.bash_profile (here underline is the convention). I corrected this and regenerated my terminal window, but even then the CMAKE command seemed to think that everything was in ~/pico-sdk . So, then I thought that maybe I'd messed up the original sdk git clone in the first place, so I deleted it all and restarted from page 33: "Manually Configure your Environment: Get the SDK and examples". I then found that it complained that arm-none-eabi-gcc couldn't be found and suggested that I also set up export PICO_TOOLCHAIN_PATH, which I did, to: /opt/homebrew/bin , because I'm using an M2 Mac. I also keep finding that by default, brew tries to install to Intel, so I added:
eval "$(/opt/homebrew/bin/brew shellenv)"
to my .bash_profile. Now, brew config says: Rosetta 2: false.
Finally, I could run the command and it appeared to generate all the makefiles. At least it filled the pico-examples-eclipse directory with a bunch of examples.
I realised they're all Pico 1 examples (I do have a couple of pico1s, so it's not wasted). Then I created pico2-examples-eclipse at the same level as pico-examples-eclipse (and pico-examples); then tried:
cmake -G"Eclipse CDT4 - Unix Makefiles" -DPICO_BOARD=pico2 -DCMAKE_BUILD_TYPE=Debug ../pico-examples with the special -DPICO_BOARD=pico2 magic and it generated a whole bunch of examples, which I presume are for pico2.
It also seemed to think that picotool was missing in both cases and built a version of picotool from source in both folders.
I won't try building or running any of these examples this evening as there's only so much crying I can cope with in a single day

!
-cheers from Julz
[ PS. I haven't really been crying, but I did get fairly frustrated at one point; then I decided to vent my frustration in the first cry for help post this evening! So, thanks again you've saved a Tree's worth of Kleenex ;-) ].