pkgs/stdenv/linux/make-bootstrap-tools-cross.nix: allow entries for to-be uplaoded targets
Newly added targets should be fine to be added as hudra jobs before the first uplaod happens. Co-authored-by: Cosima Neidahl <opna2608@protonmail.com>
This commit is contained in:
parent
4477ea4df7
commit
a0f80e965c
1 changed files with 4 additions and 1 deletions
|
@ -12,7 +12,10 @@ let
|
||||||
pkgs = releaseLib.pkgsForCross crossSystem system;
|
pkgs = releaseLib.pkgsForCross crossSystem system;
|
||||||
};
|
};
|
||||||
in lib.mapAttrs (n: make) (with lib.systems.examples; {
|
in lib.mapAttrs (n: make) (with lib.systems.examples; {
|
||||||
# NOTE: Only add platforms for which there are files in `./bootstrap-files`.
|
# NOTE: Only add platforms for which there are files in `./bootstrap-files`
|
||||||
|
# or for which you plan to request the tarball upload soon. See the
|
||||||
|
# maintainers/scripts/bootstrap-files/README.md
|
||||||
|
# on how to request an upload.
|
||||||
# Sort following the sorting in `./default.nix` `bootstrapFiles` argument.
|
# Sort following the sorting in `./default.nix` `bootstrapFiles` argument.
|
||||||
|
|
||||||
armv5tel-unknown-linux-gnueabi = sheevaplug;
|
armv5tel-unknown-linux-gnueabi = sheevaplug;
|
||||||
|
|
Loading…
Reference in a new issue