mirror of
				https://github.com/oSoWoSo/DistroHopper.git
				synced 2024-08-14 22:46:53 +00:00 
			
		
		
		
	added initial support for void linux
This commit is contained in:
		
							parent
							
								
									12fbf6b02f
								
							
						
					
					
						commit
						3ef5ff47bc
					
				
					 2 changed files with 52 additions and 5 deletions
				
			
		
							
								
								
									
										6
									
								
								quickemu
									
										
									
									
									
								
							
							
						
						
									
										6
									
								
								quickemu
									
										
									
									
									
								
							|  | @ -395,6 +395,9 @@ function vm_boot() { | ||||||
|         elif [ -e "/usr/share/edk2-ovmf/OVMF_CODE.fd" ]; then |         elif [ -e "/usr/share/edk2-ovmf/OVMF_CODE.fd" ]; then | ||||||
|           EFI_CODE="/usr/share/edk2-ovmf/OVMF_CODE.secboot.fd" |           EFI_CODE="/usr/share/edk2-ovmf/OVMF_CODE.secboot.fd" | ||||||
|           efi_vars "/usr/share/edk2-ovmf/OVMF_VARS.fd" "${EFI_VARS}" |           efi_vars "/usr/share/edk2-ovmf/OVMF_VARS.fd" "${EFI_VARS}" | ||||||
|  |         elif [ -e "/usr/share/qemu/edk2-x86_64-secure-code.fd" ]; then | ||||||
|  |           EFI_CODE="/usr/share/qemu/edk2-x86_64-secure-code.fd" | ||||||
|  |           efi_vars "/usr/share/qemu/edk2-x86_64-code.fd" "${EFI_VARS}" | ||||||
|         else |         else | ||||||
|           echo "ERROR! SecureBoot was requested but no SecureBoot capable firmware was found." |           echo "ERROR! SecureBoot was requested but no SecureBoot capable firmware was found." | ||||||
|           echo "       Please install OVMF firmware." |           echo "       Please install OVMF firmware." | ||||||
|  | @ -417,6 +420,9 @@ function vm_boot() { | ||||||
|         elif [ -e "/usr/share/edk2-ovmf/OVMF_CODE.fd" ]; then |         elif [ -e "/usr/share/edk2-ovmf/OVMF_CODE.fd" ]; then | ||||||
|           EFI_CODE="/usr/share/edk2-ovmf/OVMF_CODE.fd" |           EFI_CODE="/usr/share/edk2-ovmf/OVMF_CODE.fd" | ||||||
|           efi_vars "/usr/share/edk2-ovmf/OVMF_VARS.fd" "${EFI_VARS}" |           efi_vars "/usr/share/edk2-ovmf/OVMF_VARS.fd" "${EFI_VARS}" | ||||||
|  |         elif [ -e "/usr/share/qemu/edk2-x86_64-code.fd" ]; then | ||||||
|  |         EFI_CODE="/usr/share/qemu/edk2-x86_64-code.fd" | ||||||
|  |         efi_vars "/usr/share/qemu/edk2-x86_64-code.fd" "${EFI_VARS}" | ||||||
|         else |         else | ||||||
|           echo "ERROR! EFI boot requested but no EFI firmware found." |           echo "ERROR! EFI boot requested but no EFI firmware found." | ||||||
|           echo "       Please install OVMF firmware." |           echo "       Please install OVMF firmware." | ||||||
|  |  | ||||||
							
								
								
									
										43
									
								
								quickget
									
										
									
									
									
								
							
							
						
						
									
										43
									
								
								quickget
									
										
									
									
									
								
							|  | @ -59,6 +59,7 @@ function pretty_name() { | ||||||
|     ubuntu-kylin)       PRETTY_NAME="Ubuntu Kylin";; |     ubuntu-kylin)       PRETTY_NAME="Ubuntu Kylin";; | ||||||
|     ubuntu-mate)        PRETTY_NAME="Ubuntu MATE";; |     ubuntu-mate)        PRETTY_NAME="Ubuntu MATE";; | ||||||
|     ubuntu-studio)      PRETTY_NAME="Ubuntu Studio";; |     ubuntu-studio)      PRETTY_NAME="Ubuntu Studio";; | ||||||
|  |     void)               PRETTY_NAME="Void Linux";; | ||||||
|     zorin)              PRETTY_NAME="Zorin OS";; |     zorin)              PRETTY_NAME="Zorin OS";; | ||||||
|     *)                  PRETTY_NAME="${SIMPLE_NAME^}";; |     *)                  PRETTY_NAME="${SIMPLE_NAME^}";; | ||||||
|   esac |   esac | ||||||
|  | @ -191,6 +192,7 @@ function os_support() { | ||||||
|     ubuntu-kylin \ |     ubuntu-kylin \ | ||||||
|     ubuntu-mate \ |     ubuntu-mate \ | ||||||
|     ubuntu-studio \ |     ubuntu-studio \ | ||||||
|  |     void \ | ||||||
|     windows \ |     windows \ | ||||||
|     xubuntu \ |     xubuntu \ | ||||||
|     zorin |     zorin | ||||||
|  | @ -352,6 +354,15 @@ function releases_ubuntu() { | ||||||
|     canary |     canary | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | function releases_void() { | ||||||
|  |     echo i686-20210930 \ | ||||||
|  |     i686-20210930-xfce \ | ||||||
|  |     x86_64-20210930 \ | ||||||
|  |     x86_64-20210930-xfce \ | ||||||
|  |     x86_64-musl-20210930 \ | ||||||
|  |     x86_64-musl-20210930-xfce | ||||||
|  | } | ||||||
|  | 
 | ||||||
| function languages_windows() { | function languages_windows() { | ||||||
|     LANGS=(Arabic |     LANGS=(Arabic | ||||||
|     "Brazilian Portuguese" |     "Brazilian Portuguese" | ||||||
|  | @ -570,6 +581,9 @@ function make_vm_config() { | ||||||
|     elif [[ "${OS}" == *"ubuntu"* ]]; then |     elif [[ "${OS}" == *"ubuntu"* ]]; then | ||||||
|         GUEST="linux" |         GUEST="linux" | ||||||
|         IMAGE_TYPE="iso" |         IMAGE_TYPE="iso" | ||||||
|  |     elif [ "${OS}" == "void" ]; then | ||||||
|  |         GUEST="linux" | ||||||
|  |         IMAGE_TYPE="iso" | ||||||
|     elif [ "${OS}" == "macos" ]; then |     elif [ "${OS}" == "macos" ]; then | ||||||
|         GUEST="macos" |         GUEST="macos" | ||||||
|         IMAGE_TYPE="img" |         IMAGE_TYPE="img" | ||||||
|  | @ -615,6 +629,10 @@ EOF | ||||||
|             echo "disk_size=\"20G\"" >> "${OS}-${RELEASE}.conf" |             echo "disk_size=\"20G\"" >> "${OS}-${RELEASE}.conf" | ||||||
|         fi |         fi | ||||||
| 
 | 
 | ||||||
|  |         if [ "${OS}" == "void"  ]; then | ||||||
|  |             echo "disk_size=\"20G\"" >> "${OS}-${RELEASE}.conf" | ||||||
|  |         fi | ||||||
|  | 
 | ||||||
|         if [ "${OS}" == "zorin"  ]; then |         if [ "${OS}" == "zorin"  ]; then | ||||||
|             case  ${RELEASE} in |             case  ${RELEASE} in | ||||||
|               15education64|15edulite64|15edulite32) |               15education64|15edulite64|15edulite32) | ||||||
|  | @ -842,6 +860,7 @@ function get_linuxmint() { | ||||||
|     web_get "${URL}" "${VM_PATH}" |     web_get "${URL}" "${VM_PATH}" | ||||||
|     check_hash "${ISO}" "${HASH}" |     check_hash "${ISO}" "${HASH}" | ||||||
|     make_vm_config "${ISO}" |     make_vm_config "${ISO}" | ||||||
|  | 
 | ||||||
| } | } | ||||||
| function get_nixos() { | function get_nixos() { | ||||||
|     local FLAVOR="" |     local FLAVOR="" | ||||||
|  | @ -857,6 +876,7 @@ function get_nixos() { | ||||||
|     web_get "${URL}" "${VM_PATH}" |     web_get "${URL}" "${VM_PATH}" | ||||||
|     check_hash "${ISO}" "${HASH}" |     check_hash "${ISO}" "${HASH}" | ||||||
|     make_vm_config "${ISO}" |     make_vm_config "${ISO}" | ||||||
|  | 
 | ||||||
| } | } | ||||||
| function get_openbsd() { | function get_openbsd() { | ||||||
|     local HASH="" |     local HASH="" | ||||||
|  | @ -872,6 +892,23 @@ function get_openbsd() { | ||||||
|     make_vm_config "${ISO}" |     make_vm_config "${ISO}" | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | function get_void() { | ||||||
|  |     local FLAVOR="" | ||||||
|  |     local HASH="" | ||||||
|  |     local ISO="" | ||||||
|  |     local URL="" | ||||||
|  |     local arch="x86_64" | ||||||
|  |     # TODO:  only one hardcoded version of void added.. Add more and make it automatic | ||||||
|  |     if | ||||||
|  |     validate_release "releases_void" | ||||||
|  |     URL="https://alpha.de.repo.voidlinux.org/live/current" | ||||||
|  |     ISO="void-live-x86_64-20210930-xfce.iso" | ||||||
|  |     #ISO="void-live-${ARCH}${LIBC}-${VERSION}-${FLAVOR}.iso" | ||||||
|  |     web_get "${URL}/${ISO}" "${VM_PATH}" | ||||||
|  |     check_hash "${ISO}" "${HASH}" | ||||||
|  |     make_vm_config "${ISO}" | ||||||
|  | } | ||||||
|  | 
 | ||||||
| function get_zorin() { | function get_zorin() { | ||||||
|     local ISO="" |     local ISO="" | ||||||
|     local URL="" |     local URL="" | ||||||
|  | @ -1149,6 +1186,7 @@ function get_ubuntu() { | ||||||
|         make_vm_config "${ISO}" |         make_vm_config "${ISO}" | ||||||
|     fi |     fi | ||||||
| } | } | ||||||
|  | 
 | ||||||
| function get_garuda() { | function get_garuda() { | ||||||
|     local HASH="" |     local HASH="" | ||||||
|     local ISO="" |     local ISO="" | ||||||
|  | @ -1480,7 +1518,6 @@ function unattended_windows() { | ||||||
| EOF | EOF | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| 
 |  | ||||||
| function dbg_windows() { | function dbg_windows() { | ||||||
|   local DEBUG=0 |   local DEBUG=0 | ||||||
|   if [ ${DEBUG} -eq 1 ]; then |   if [ ${DEBUG} -eq 1 ]; then | ||||||
|  | @ -1627,6 +1664,8 @@ if [ -n "${2}" ]; then | ||||||
|         get_android |         get_android | ||||||
|     elif [ "${OS}" == "archlinux" ]; then |     elif [ "${OS}" == "archlinux" ]; then | ||||||
|         get_archlinux |         get_archlinux | ||||||
|  |     elif [ "${OS}" == "void" ]; then | ||||||
|  |         get_void | ||||||
|     elif [ "${OS}" == "debian" ]; then |     elif [ "${OS}" == "debian" ]; then | ||||||
|      if [ -n "${3}" ]; then |      if [ -n "${3}" ]; then | ||||||
|             FREEDOM="${3}" |             FREEDOM="${3}" | ||||||
|  | @ -1768,6 +1807,8 @@ else | ||||||
|         releases_solus |         releases_solus | ||||||
|     elif [[ "${OS}" == *"ubuntu"* ]]; then |     elif [[ "${OS}" == *"ubuntu"* ]]; then | ||||||
|         releases_ubuntu |         releases_ubuntu | ||||||
|  |     elif [ "${OS}" == "void" ]; then | ||||||
|  |         releases_void | ||||||
|     elif [ "${OS}" == "windows" ]; then |     elif [ "${OS}" == "windows" ]; then | ||||||
|         releases_windows |         releases_windows | ||||||
|     elif [ "${OS}" == "zorin" ]; then |     elif [ "${OS}" == "zorin" ]; then | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue