Skip to content
Snippets Groups Projects
Commit 0dec3d05 authored by ping's avatar ping
Browse files

Remove the --arch option as it is not fully implemented yet

parent 2a9ad223
No related branches found
No related tags found
No related merge requests found
...@@ -49,7 +49,6 @@ Replace <image_name> with the name of your Docker image and <param> with the des ...@@ -49,7 +49,6 @@ Replace <image_name> with the name of your Docker image and <param> with the des
| --luks-keys | Provide a list of additional keys for LUKS encryption. | | --luks-keys | Provide a list of additional keys for LUKS encryption. |
| --ram | Use the system in RAM. | | --ram | Use the system in RAM. |
| --challenge | Specify the challenge in use by YubiKeys. | | --challenge | Specify the challenge in use by YubiKeys. |
| --arch | Set the architecture of the system (e.g., amd64). |
| --pxe | Set the URL of the PXE and generate an initramfs, kernel, and squashfs for the PXE to use (use the URL of the folder where the squashfs is stored, not the direct link to the squashfs). | | --pxe | Set the URL of the PXE and generate an initramfs, kernel, and squashfs for the PXE to use (use the URL of the folder where the squashfs is stored, not the direct link to the squashfs). |
| --cache | Path to a folder with a clean filesystem already downloaded. | | --cache | Path to a folder with a clean filesystem already downloaded. |
| --version | Version of Ubuntu (e.g., Noble). | | --version | Version of Ubuntu (e.g., Noble). |
......
...@@ -30,7 +30,6 @@ helper() { ...@@ -30,7 +30,6 @@ helper() {
echo " --luks-keys List of additional keys" echo " --luks-keys List of additional keys"
echo " --ram Using the system in RAM" echo " --ram Using the system in RAM"
echo " --challenge List of additional keys" echo " --challenge List of additional keys"
echo " --arch Set the architecture of the system (e.g., amd64)"
echo " --pxe Set the url of the pxe and generate an initramfs, kernel and squashfs for the pxe to use echo " --pxe Set the url of the pxe and generate an initramfs, kernel and squashfs for the pxe to use
(use the url of the folder where the squashfs is stored, not the direct link to the squashfs)" (use the url of the folder where the squashfs is stored, not the direct link to the squashfs)"
echo " --cache Path to a folder with a clean fs already downloaded" echo " --cache Path to a folder with a clean fs already downloaded"
...@@ -133,15 +132,6 @@ while [ "$#" -gt 0 ]; do ...@@ -133,15 +132,6 @@ while [ "$#" -gt 0 ]; do
helper helper
fi fi
;; ;;
--arch)
if [ -n "$2" ]; then
export ARCH="$2"
shift 2
else
echo "Error: --arch requires an argument" >&2
helper
fi
;;
*) *)
echo "Unknown option: $1" >&2 echo "Unknown option: $1" >&2
helper helper
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment