canonical / chisel

GNU Affero General Public License v3.0
270 stars 42 forks source link

How to chisel for specific architecture #129

Closed god-is-a-crab closed 6 months ago

god-is-a-crab commented 6 months ago

How do I chisel cut for a specific architecture e.g. arm64 without having to set up an arm64 machine and using chisel on that machine?

rebornplusplus commented 6 months ago
chisel cut --arch arm64 ...

Usage:

$ chisel cut --help
Usage:
  chisel cut [cut-OPTIONS] [<slice names>...]

The cut command uses the provided selection of package slices
to create a new filesystem tree in the root location.

[cut command options]
      --release=<dir>       Chisel release directory
      --root=<dir>          Root for generated content
      --arch=<arch>         Package architecture
god-is-a-crab commented 6 months ago

Thanks 👍