summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xvasile14
1 files changed, 10 insertions, 4 deletions
diff --git a/vasile b/vasile
index e6be450..a4eaedc 100755
--- a/vasile
+++ b/vasile
@@ -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 ""
;;