We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some distros may depend on the filenames, eg. alpine have an option to download and apply apkvol file during the boot.
Problem it that file should have the name like client.apkvol.tar.gz otherwise it will fails to boot, trying to decrypt it according to it's extension.
client.apkvol.tar.gz
Currently, in this command:
pixiecore boot vmlinuz-vanilla initramfs-vanilla \ --cmdline='ip=dhcp modules=loop,squashfs,sd-mod,usb-storage modloop={{ID "modloop-vanilla"}} apkovl={{ID "client.apkvol.tar.gz"}}'
client.apkvol.tar.gz file name will be translated to other-1, that's exactly problem.
other-1
The text was updated successfully, but these errors were encountered:
+1, this is a problem I had booting illumos as well. The whole file serving logic needs to be redesigned, so it's not a quick fix :(
Sorry, something went wrong.
No branches or pull requests
Some distros may depend on the filenames, eg. alpine have an option to download and apply apkvol file during the boot.
Problem it that file should have the name like
client.apkvol.tar.gz
otherwise it will fails to boot, trying to decrypt it according to it's extension.Currently, in this command:
client.apkvol.tar.gz
file name will be translated toother-1
, that's exactly problem.The text was updated successfully, but these errors were encountered: