-
Are there some talos developer docs somewhere? I'm trying to build an image for an arm64 "NanoPi K1 Plus" board (basically the same as the other Allwinner arm64 boards, but of course needs a different dtb file) from my intel laptop, and I'm a bit bewildered by all the Makefile targets. I grep'ed for 'bananapi' and made the obvious copies of everything for my new nanopi board. Great, now how do I test this out? I think I want to run my new What's the build+try workflow meant to look like? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @anguslees, all of our docs would be found at https://talos.dev which you've probably already seen, but this issue probably just comes down to our default values in the makefile. Try something like If that doesn't work, shout back at us here or in slack. Thanks for posting, this is indeed worthy of better documentation. |
Beta Was this translation helpful? Give feedback.
Hey @anguslees, all of our docs would be found at https://talos.dev which you've probably already seen, but this issue probably just comes down to our default values in the makefile. Try something like
make installer USERNAME=anguslees REGISTRY=docker.io PUSH=true
to actually build and push your own installer to a repo you have access to. Then, try rerunning your new SBC target with the same vars,make sbc-nanopi_k1plus USERNAME=anguslees REGISTRY=docker.io
.If that doesn't work, shout back at us here or in slack. Thanks for posting, this is indeed worthy of better documentation.