diff options
author | V3n3RiX <venerix@rogentos.ro> | 2015-11-08 11:06:51 +0000 |
---|---|---|
committer | V3n3RiX <venerix@rogentos.ro> | 2015-11-08 11:06:51 +0000 |
commit | 53c7157aef4e8342ef49ff6174cbbd5ab4f987b6 (patch) | |
tree | c85aea89368d66410e8edcd0b4fd351f045d1078 | |
parent | 0f23feb82927734f6acb5bf101d88bb0c9ad2ae8 (diff) |
slowly unveal vasile's next abilities ... iso scripts are still wip
-rwxr-xr-x | vasile | 14 |
1 files changed, 10 insertions, 4 deletions
@@ -1,8 +1,8 @@ #!/usr/bin/env bash -# Say Hello to Vasile, a script to build Kogaion Linux packages in a clean squashfs + overlayfs chroot +# Say Hello to Vasile, a script to build Kogaion Linux packages && ISO images using a clean squashfs + overlayfs chroot # Using predefined targets : kernel.target , xlibs.target , x11.target , sound.target , artwork.target # Main author : Ghiunhan Mamut (aka V3n3RiX) @ RogentOS Development Group -# Dependencies : kernel built with squashfs + overlayfs, app-arch/dpkg (optional for building deb packages in portage) +# Dependencies : kernel built with squashfs + overlayfs support # source /usr/lib/vasile/libvasile @@ -12,12 +12,18 @@ case $1 in ;; --build32) source /usr/share/vasile/build32 ;; + --iso64) source /usr/share/vasile/iso64 + ;; + --iso32) source /usr/share/vasile/iso32 + ;; --help) echo -e "" echo -e "Usage: vasile [options]" echo -e "" echo -e "Options:" - echo -e "--build64 : build package in a clean x64 environment" - echo -e "--build32 : build package in a clean x86 environment" + echo -e "--build64 : build package/target in a clean x64 squashed core" + echo -e "--build32 : build package/target in a clean x86 squashed core" + echo -e "--iso64 : build x64 iso based on clean squashed core + targets" + echo -e "--iso32 : build x86 iso based on clean squashed core + targets" echo -e "--help : display this help and exit" echo -e "" ;; |