You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello there,
I am really interested to use vamos on one project I develop, at the CI/CD process, where I need to change files protection attributes before creating the lha archive file. For that I need to use Protect command, that requires dos.library.
On my first tests yesterday, the above didn't work because couldn't find dos.library. Maybe a misconfiguration from my side.
What do I need to make it work? I was thinking that a good solution might be to use the AROS 68k boot disk, which includes protect command, and is open source project. Have anyone tried something like that? Should I create a System folder with libraries and C commands?
I want to create the above in a docker container, which will be able to be used on different projects, wherever necessary.
Any recommendation will be helpful. Thank you for your help.
The text was updated successfully, but these errors were encountered:
I created today the first version of the docker image, which can be found at https://github.com/walkero-gr/amitoolsondocker
Based on some tests I did it seems to work now, i.e. with the following line:
vamos -C 68020 -V aros:/home/aros -a C:aros:c -a Libs:aros:Libs C:Protect c:list ADD srwed
I doubt that vamos will help you here... Since it works directly on the host file system it cannot map all protection bits to an equivalent host bit and ignores them silently...
I'd suggest to have a look at python-lhafile. This library allows to you to create lha archives in your python scripts. Maybe this lib allows you to specify the Amiga attributes bit by bit...
Hello there,
I am really interested to use vamos on one project I develop, at the CI/CD process, where I need to change files protection attributes before creating the lha archive file. For that I need to use Protect command, that requires dos.library.
On my first tests yesterday, the above didn't work because couldn't find dos.library. Maybe a misconfiguration from my side.
What do I need to make it work? I was thinking that a good solution might be to use the AROS 68k boot disk, which includes protect command, and is open source project. Have anyone tried something like that? Should I create a System folder with libraries and C commands?
I want to create the above in a docker container, which will be able to be used on different projects, wherever necessary.
Any recommendation will be helpful. Thank you for your help.
The text was updated successfully, but these errors were encountered: