diff --git a/PepDeb32.sh b/PepDeb32.sh new file mode 100755 index 0000000..d78821e --- /dev/null +++ b/PepDeb32.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# This is a helper script used to do the actual build. +# By running this script , as "sudo" you can easily build a new PeppermintOS ISO from our CI|CD pipeline. + + +[ -x ./PepDeb32/pepbld.sh ] && (cd PepDeb32 ; sudo ./pepbld.sh ; cd ../) + diff --git a/PepDeb32/BldHelper-release.sh b/PepDeb32/BldHelper-release.sh new file mode 100755 index 0000000..0175498 --- /dev/null +++ b/PepDeb32/BldHelper-release.sh @@ -0,0 +1,78 @@ + #!/bin/bash + +# BldHelper-release.sh +# This script is meant to be run on the build server and expects to find and update itself from adjacent repos. +# From PepDistroConfigs, these repos are ../PepProPixMaps & ../PepProTools and are vital to having a working build. + +### ## # Set build working variables HERE # ## ### + +PREFIX=PepMini # Sets a unique final name of the ISO and checksum so only removes 2 files . +SUFFIX=i386 # Also used by . And to distinguish between amd64 and x86 or devuan and ubuntu . +BUILD=release # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable] + +################################################## +### ## # Make NO Edits Below This Line !! # ## ### +################################################## + +TODAY=$(date -u +"%Y-%m-%d") && export TODAY # If MasterBuilder.sh is used IT will set the date. If not used, we set it here. +FileName="${PREFIX}-${SUFFIX}" # This will give a uniquely named and dated ISO and checksum for . +LOCATION=/var/www/html/${BUILD} # Tells and the script which 2 files to remove and where to put them. +LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build. +WorkingDir=~/pepadmin/PepMini/PepDeb32 #* If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. * +OutFile="/tmp/${PREFIX}${SUFFIX}.out" +LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log" +_cache="./cache" +_break=0 ; _wait=30 # Time (in seconds) to wait + +# Run the build script. + ./pepbld.sh 2>&1 | tee -a ${OutFile} + + +# Timing matters, don't destroy the old one without a replacement. +# Check for the ISO to appear and wait for things to settle. +until [ -e fusato/*.iso ] + do ((++_break)) + [ $_break -gt $_wait ] && break || sleep 1 +done + +if [ ${_break} -lt ${_wait} ] ; then + +mv fusato/*.iso fusato/${FileName}.iso + +# Make the checksum file. +cd fusato +echo "# ${FileName} ${TODAY}" > ${FileName}-sha512.checksum +sha512sum ${FileName}.iso >> ${FileName}-sha512.checksum + +### +# Remove the previous files in ${LOCATION} . +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum +#rm -f ${LOCATION}/${FileName}*.torrent + +#mv $(FileName}* ${LOCATION}/ +mv ${FileName}.iso ${LOCATION}/${FileName}.iso +mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum + +# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}* +touch ${LOCATION}/${FileName}* + +lb clean & + +# Move the log file to the log directory. +[ ! -e ${LogDir} ] && mkdir -p ${LogDir} +mv ${OutFile} ${LogFile} + +# Remove old packages from the cache directory +for i in $(grep "Del " ${LogFile} | sort -u | cut -f2,3 -d" " | tr " " "_" | tr ":" "*" | tr "+" "*" ) + do for j in $_cache/packages.*/${i}*.deb + do [ -e $j ] && rm $j + done +done + +### + +else echo -e "\n\tAfter $_break seconds, ISO never appeared.\n" | tee --append ${OutFile} + mv ${OutFile} ${LogFile} +fi + diff --git a/pepbld-deb-32.sh b/PepDeb32/pepbld.sh similarity index 95% rename from pepbld-deb-32.sh rename to PepDeb32/pepbld.sh index b60705f..734e906 100755 --- a/pepbld-deb-32.sh +++ b/PepDeb32/pepbld.sh @@ -37,8 +37,8 @@ lb config noauto \ "${@}" - # Setup the installer structure +mkdir -p $uchinanchu/fusato/config/archives mkdir -p $uchinanchu/fusato/config/includes.installer mkdir -p $uchinanchu/fusato/config/includes.binary mkdir -p $uchinanchu/fusato/config/includes.binary/install @@ -46,6 +46,7 @@ mkdir -p $uchinanchu/fusato/config/includes.installer/usr/share #cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives cp $uchinanchu/pepinstaller/preseed/preseed.cfg $uchinanchu/fusato/config/includes.installer +cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives # Copy recursive files and sub-directories, containing symlinks. cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary diff --git a/PepDeb32/pepinstaller b/PepDeb32/pepinstaller new file mode 120000 index 0000000..1be46a8 --- /dev/null +++ b/PepDeb32/pepinstaller @@ -0,0 +1 @@ +../pepinstaller \ No newline at end of file diff --git a/PepDeb32/peploadersplash b/PepDeb32/peploadersplash new file mode 120000 index 0000000..16998cf --- /dev/null +++ b/PepDeb32/peploadersplash @@ -0,0 +1 @@ +../peploadersplash \ No newline at end of file diff --git a/PepDeb32/peprepo b/PepDeb32/peprepo new file mode 120000 index 0000000..f71af40 --- /dev/null +++ b/PepDeb32/peprepo @@ -0,0 +1 @@ +../peprepo \ No newline at end of file diff --git a/PepDeb64.sh b/PepDeb64.sh new file mode 100755 index 0000000..e9ea3d6 --- /dev/null +++ b/PepDeb64.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# This is a helper script used to do the actual build. +# By running this script , as "sudo" you can easily build a new PeppermintOS ISO from our CI|CD pipeline. + + +[ -x ./PepDeb64/pepbld.sh ] && (cd PepDeb64 ; sudo ./pepbld.sh ; cd ../) + diff --git a/PepDeb64/BldHelper-release.sh b/PepDeb64/BldHelper-release.sh new file mode 100755 index 0000000..e79ca7d --- /dev/null +++ b/PepDeb64/BldHelper-release.sh @@ -0,0 +1,78 @@ + #!/bin/bash + +# BldHelper-release.sh +# This script is meant to be run on the build server and expects to find and update itself from adjacent repos. +# From PepDistroConfigs, these repos are ../PepProPixMaps & ../PepProTools and are vital to having a working build. + +### ## # Set build working variables HERE # ## ### + +PREFIX=PepMini # Sets a unique final name of the ISO and checksum so only removes 2 files . +SUFFIX=amd64 # Also used by . And to distinguish between amd64 and x86 or devuan and ubuntu . +BUILD=release # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable] + +################################################## +### ## # Make NO Edits Below This Line !! # ## ### +################################################## + +TODAY=$(date -u +"%Y-%m-%d") && export TODAY # If MasterBuilder.sh is used IT will set the date. If not used, we set it here. +FileName="${PREFIX}-${SUFFIX}" # This will give a uniquely named and dated ISO and checksum for . +LOCATION=/var/www/html/${BUILD} # Tells and the script which 2 files to remove and where to put them. +LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build. +WorkingDir=~/pepadmin/PepMini/PepDeb64 # If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. * +OutFile="/tmp/${PREFIX}${SUFFIX}.out" +LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log" +_cache="./cache" +_break=0 ; _wait=30 # Time (in seconds) to wait + +# Run the build script. + ./pepbld.sh 2>&1 | tee -a ${OutFile} + + +# Timing matters, don't destroy the old one without a replacement. +# Check for the ISO to appear and wait for things to settle. +until [ -e fusato/*.iso ] + do ((++_break)) + [ $_break -gt $_wait ] && break || sleep 1 +done + +if [ ${_break} -lt ${_wait} ] ; then + +mv fusato/*.iso fusato/${FileName}.iso + +# Make the checksum file. +cd fusato +echo "# ${FileName} ${TODAY}" > ${FileName}-sha512.checksum +sha512sum ${FileName}.iso >> ${FileName}-sha512.checksum + +### +# Remove the previous files in ${LOCATION} . +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum +#rm -f ${LOCATION}/${FileName}*.torrent + +#mv $(FileName}* ${LOCATION}/ +mv ${FileName}.iso ${LOCATION}/${FileName}.iso +mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum + +# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}* +touch ${LOCATION}/${FileName}* + +lb clean & + +# Move the log file to the log directory. +[ ! -e ${LogDir} ] && mkdir -p ${LogDir} +mv ${OutFile} ${LogFile} + +# Remove old packages from the cache directory +for i in $(grep "Del " ${LogFile} | sort -u | cut -f2,3 -d" " | tr " " "_" | tr ":" "*" | tr "+" "*" ) + do for j in $_cache/packages.*/${i}*.deb + do [ -e $j ] && rm $j + done +done + +### + +else echo -e "\n\tAfter $_break seconds, ISO never appeared.\n" | tee --append ${OutFile} + mv ${OutFile} ${LogFile} +fi + diff --git a/pepbld-deb-64.sh b/PepDeb64/pepbld.sh similarity index 95% rename from pepbld-deb-64.sh rename to PepDeb64/pepbld.sh index 181ac93..30215a6 100755 --- a/pepbld-deb-64.sh +++ b/PepDeb64/pepbld.sh @@ -38,6 +38,7 @@ lb config noauto \ # Setup the installer structure +mkdir -p $uchinanchu/fusato/config/archives mkdir -p $uchinanchu/fusato/config/includes.installer mkdir -p $uchinanchu/fusato/config/includes.binary mkdir -p $uchinanchu/fusato/config/includes.binary/install @@ -45,6 +46,7 @@ mkdir -p $uchinanchu/fusato/config/includes.installer/usr/share #cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives cp $uchinanchu/pepinstaller/preseed/preseed.cfg $uchinanchu/fusato/config/includes.installer +cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives # Copy recursive files and sub-directories, containing symlinks. cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary diff --git a/PepDeb64/pepinstaller b/PepDeb64/pepinstaller new file mode 120000 index 0000000..1be46a8 --- /dev/null +++ b/PepDeb64/pepinstaller @@ -0,0 +1 @@ +../pepinstaller \ No newline at end of file diff --git a/PepDeb64/peploadersplash b/PepDeb64/peploadersplash new file mode 120000 index 0000000..16998cf --- /dev/null +++ b/PepDeb64/peploadersplash @@ -0,0 +1 @@ +../peploadersplash \ No newline at end of file diff --git a/PepDeb64/peprepo b/PepDeb64/peprepo new file mode 120000 index 0000000..f71af40 --- /dev/null +++ b/PepDeb64/peprepo @@ -0,0 +1 @@ +../peprepo \ No newline at end of file diff --git a/PepDeb_arm64.sh b/PepDeb_arm64.sh new file mode 100755 index 0000000..d444f7d --- /dev/null +++ b/PepDeb_arm64.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# This is a helper script used to do the actual build. +# By running this script , as "sudo" you can easily build a new PeppermintOS ISO from our CI|CD pipeline. + + +[ -x ./PepDeb_arm64/pepbld.sh ] && (cd PepDeb_arm64 ; sudo ./pepbld.sh ; cd ../) + diff --git a/PepDeb_arm64/BldHelper-release.sh b/PepDeb_arm64/BldHelper-release.sh new file mode 100755 index 0000000..f017e65 --- /dev/null +++ b/PepDeb_arm64/BldHelper-release.sh @@ -0,0 +1,78 @@ + #!/bin/bash + +# BldHelper-release.sh +# This script is meant to be run on the build server and expects to find and update itself from adjacent repos. +# From PepDistroConfigs, these repos are ../PepProPixMaps & ../PepProTools and are vital to having a working build. + +### ## # Set build working variables HERE # ## ### + +PREFIX=PepMini # Sets a unique final name of the ISO and checksum so only removes 2 files . +SUFFIX=arm64 # Also used by . And to distinguish between amd64 and x86 or devuan and ubuntu . +BUILD=release # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable] + +################################################## +### ## # Make NO Edits Below This Line !! # ## ### +################################################## + +TODAY=$(date -u +"%Y-%m-%d") && export TODAY # If MasterBuilder.sh is used IT will set the date. If not used, we set it here. +FileName="${PREFIX}-${SUFFIX}" # This will give a uniquely named and dated ISO and checksum for . +LOCATION=/var/www/html/${BUILD} # Tells and the script which 2 files to remove and where to put them. +LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build. +WorkingDir=~/pepadmin/PepMini/PepDeb_arm64 # If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. * +OutFile="/tmp/${PREFIX}${SUFFIX}.out" +LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log" +_cache="./cache" +_break=0 ; _wait=30 # Time (in seconds) to wait + +# Run the build script. + ./pepbld.sh 2>&1 | tee -a ${OutFile} + + +# Timing matters, don't destroy the old one without a replacement. +# Check for the ISO to appear and wait for things to settle. +until [ -e fusato/*.iso ] + do ((++_break)) + [ $_break -gt $_wait ] && break || sleep 1 +done + +if [ ${_break} -lt ${_wait} ] ; then + +mv fusato/*.iso fusato/${FileName}.iso + +# Make the checksum file. +cd fusato +echo "# ${FileName} ${TODAY}" > ${FileName}-sha512.checksum +sha512sum ${FileName}.iso >> ${FileName}-sha512.checksum + +### +# Remove the previous files in ${LOCATION} . +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum +#rm -f ${LOCATION}/${FileName}*.torrent + +#mv $(FileName}* ${LOCATION}/ +mv ${FileName}.iso ${LOCATION}/${FileName}.iso +mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum + +# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}* +touch ${LOCATION}/${FileName}* + +lb clean & + +# Move the log file to the log directory. +[ ! -e ${LogDir} ] && mkdir -p ${LogDir} +mv ${OutFile} ${LogFile} + +# Remove old packages from the cache directory +for i in $(grep "Del " ${LogFile} | sort -u | cut -f2,3 -d" " | tr " " "_" | tr ":" "*" | tr "+" "*" ) + do for j in $_cache/packages.*/${i}*.deb + do [ -e $j ] && rm $j + done +done + +### + +else echo -e "\n\tAfter $_break seconds, ISO never appeared.\n" | tee --append ${OutFile} + mv ${OutFile} ${LogFile} +fi + diff --git a/pepbld-deb-arm64.sh b/PepDeb_arm64/pepbld.sh similarity index 95% rename from pepbld-deb-arm64.sh rename to PepDeb_arm64/pepbld.sh index 558eea9..48cf7c1 100755 --- a/pepbld-deb-arm64.sh +++ b/PepDeb_arm64/pepbld.sh @@ -39,8 +39,8 @@ lb config noauto \ "${@}" - # Setup the installer structure +mkdir -p $uchinanchu/fusato/config/archives mkdir -p $uchinanchu/fusato/config/includes.installer mkdir -p $uchinanchu/fusato/config/includes.binary mkdir -p $uchinanchu/fusato/config/includes.binary/install @@ -48,6 +48,7 @@ mkdir -p $uchinanchu/fusato/config/includes.installer/usr/share #cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives cp $uchinanchu/pepinstaller/preseed/preseed.cfg $uchinanchu/fusato/config/includes.installer +cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives # Copy recursive files and sub-directories, containing symlinks. cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary diff --git a/PepDeb_arm64/pepinstaller b/PepDeb_arm64/pepinstaller new file mode 120000 index 0000000..1be46a8 --- /dev/null +++ b/PepDeb_arm64/pepinstaller @@ -0,0 +1 @@ +../pepinstaller \ No newline at end of file diff --git a/PepDeb_arm64/peploadersplash/boot/grub/font.pf2 b/PepDeb_arm64/peploadersplash/boot/grub/font.pf2 new file mode 100644 index 0000000..59e8ffa Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/font.pf2 differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/grub.cfg b/PepDeb_arm64/peploadersplash/boot/grub/grub.cfg new file mode 100644 index 0000000..76340d9 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/boot/grub/grub.cfg @@ -0,0 +1,96 @@ +if loadfont $prefix/font.pf2 ; then + set gfxmode=800x600 + set gfxpayload=keep + insmod efi_gop + insmod efi_uga + insmod video_bochs + insmod video_cirrus + insmod gfxterm + insmod png + terminal_output gfxterm +fi + +if background_image /isolinux/splash.png; then + set color_normal=light-gray/black + set color_highlight=white/black +elif background_image /splash.png; then + set color_normal=light-gray/black + set color_highlight=white/black +else + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue +fi + +source /boot/grub/config.cfg + +insmod play +play 960 440 1 0 4 440 1 +set theme=/boot/grub/live-theme/theme.txt +menuentry --hotkey=g 'Graphical install' { + set background_color=black + linux /install/vmlinuz vga=788 --- quiet + initrd /install/initrd.gz +} +menuentry --hotkey=i 'Install' { + set background_color=black + linux /install/vmlinuz vga=788 --- quiet + initrd /install/initrd.gz +} +submenu --hotkey=a 'Advanced options ...' { + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue + set theme=/boot/grub/live-theme/theme.txt + set gfxpayload=keep + menuentry '... Graphical expert install' { + set background_color=black + linux /install/vmlinuz priority=low vga=788 --- + initrd /install/initrd.gz + } + menuentry '... Graphical rescue mode' { + set background_color=black + linux /install/vmlinuz vga=788 rescue/enable=true --- quiet + initrd /install/initrd.gz + } + menuentry '... Graphical automated install' { + set background_color=black + linux /install/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/initrd.gz + } + menuentry --hotkey=x '... Expert install' { + set background_color=black + linux /install/vmlinuz priority=low vga=788 --- + initrd /install/initrd.gz + } + menuentry --hotkey=r '... Rescue mode' { + set background_color=black + linux /install/vmlinuz vga=788 rescue/enable=true --- quiet + initrd /install/initrd.gz + } + menuentry --hotkey=a '... Automated install' { + set background_color=black + linux /install/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/initrd.gz + } + submenu --hotkey=s '... Speech-enabled advanced options ...' { + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue + set theme=/boot/grub/live-theme/theme.txt + set gfxpayload=keep + menuentry --hotkey=x '... Expert speech install' { + set background_color=black + linux /install/vmlinuz priority=low vga=788 speakup.synth=soft --- + initrd /install/initrd.gz + } + menuentry --hotkey=r '... Rescue speech mode' { + set background_color=black + linux /install/vmlinuz vga=788 rescue/enable=true speakup.synth=soft --- quiet + initrd /install/initrd.gz + } + menuentry --hotkey=a '... Automated speech install' { + set background_color=black + linux /install/vmlinuz auto=true priority=critical vga=788 speakup.synth=soft --- quiet + initrd /install/initrd.gz + } + } +} + diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/background.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/background.png new file mode 100644 index 0000000..6965387 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/background.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/4MLinux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/4MLinux.png new file mode 100644 index 0000000..1c6fe5e Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/4MLinux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/AlpineLinux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/AlpineLinux.png new file mode 100644 index 0000000..6212a1f Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/AlpineLinux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.i686.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.i686.png new file mode 100644 index 0000000..611a6fb Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.i686.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.x86_64.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.x86_64.png new file mode 100644 index 0000000..611a6fb Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.x86_64.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/SystemRescueCD.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/SystemRescueCD.png new file mode 100644 index 0000000..7c41182 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/SystemRescueCD.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/android.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/android.png new file mode 100644 index 0000000..dad066f Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/android.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/anonymous.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/anonymous.png new file mode 100644 index 0000000..7d165b6 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/anonymous.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/antergos.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/antergos.png new file mode 100644 index 0000000..32e3a3a Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/antergos.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/arch.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/arch.png new file mode 100644 index 0000000..f6cd870 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/arch.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/archlinux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/archlinux.png new file mode 100644 index 0000000..f6cd870 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/archlinux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/arcolinux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/arcolinux.png new file mode 100644 index 0000000..c5e5e5e Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/arcolinux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/artix.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/artix.png new file mode 100644 index 0000000..0cbeb11 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/artix.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/bedrock.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/bedrock.png new file mode 100644 index 0000000..58ff48a Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/bedrock.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/cancel.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/cancel.png new file mode 100644 index 0000000..fca2ac9 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/cancel.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/centos.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/centos.png new file mode 100644 index 0000000..23fe2fa Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/centos.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/chakra.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/chakra.png new file mode 100644 index 0000000..6f63a95 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/chakra.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/debian.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/debian.png new file mode 100644 index 0000000..20bea8c Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/debian.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/deepin.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/deepin.png new file mode 100644 index 0000000..61c92fb Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/deepin.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/devuan.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/devuan.png new file mode 100644 index 0000000..ff65401 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/devuan.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/driver.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/driver.png new file mode 100644 index 0000000..1621ee7 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/driver.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/edit.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/edit.png new file mode 100644 index 0000000..6a43bd9 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/edit.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/efi.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/efi.png new file mode 100644 index 0000000..4ecf3b9 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/efi.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/elementary.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/elementary.png new file mode 100644 index 0000000..2840354 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/elementary.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/endeavouros.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/endeavouros.png new file mode 100644 index 0000000..6b1e530 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/endeavouros.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/fedora.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/fedora.png new file mode 100644 index 0000000..926b56d Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/fedora.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/find.efi.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/find.efi.png new file mode 100644 index 0000000..0e32321 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/find.efi.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/find.none.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/find.none.png new file mode 100644 index 0000000..87d4d0e Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/find.none.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/freebsd.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/freebsd.png new file mode 100644 index 0000000..fb9408c Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/freebsd.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/garuda.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/garuda.png new file mode 100644 index 0000000..f699718 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/garuda.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/gentoo.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/gentoo.png new file mode 100644 index 0000000..bc0ed70 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/gentoo.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/gnu-linux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/gnu-linux.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/gnu-linux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/haiku.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/haiku.png new file mode 100644 index 0000000..ce7f818 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/haiku.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/help.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/help.png new file mode 100644 index 0000000..d8b5a17 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/help.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kali.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kali.png new file mode 100644 index 0000000..900dc82 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kali.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kaos.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kaos.png new file mode 100644 index 0000000..9fd4e89 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kaos.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kbd.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kbd.png new file mode 100644 index 0000000..6ace3ac Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kbd.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/korora.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/korora.png new file mode 100644 index 0000000..456e876 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/korora.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kubuntu.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kubuntu.png new file mode 100644 index 0000000..7a79ff3 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/kubuntu.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lang.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lang.png new file mode 100644 index 0000000..3c9c1d7 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lang.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lfs.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lfs.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lfs.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/linux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/linux.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/linux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/linuxmint.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/linuxmint.png new file mode 100644 index 0000000..7d9da81 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/linuxmint.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lubuntu.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lubuntu.png new file mode 100644 index 0000000..057c8e2 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/lubuntu.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/macosx.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/macosx.png new file mode 100644 index 0000000..ea03e77 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/macosx.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mageia.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mageia.png new file mode 100644 index 0000000..79afa76 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mageia.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/manjaro.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/manjaro.png new file mode 100644 index 0000000..611a6fb Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/manjaro.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mate.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mate.png new file mode 100644 index 0000000..b2fc22a Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mate.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/memtest.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/memtest.png new file mode 100644 index 0000000..1621ee7 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/memtest.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mx-linux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mx-linux.png new file mode 100644 index 0000000..49f1133 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/mx-linux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/neon.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/neon.png new file mode 100644 index 0000000..e41906e Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/neon.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/opensuse.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/opensuse.png new file mode 100644 index 0000000..d844fd5 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/opensuse.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/parrot.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/parrot.png new file mode 100644 index 0000000..3333de9 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/parrot.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/pop-os.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/pop-os.png new file mode 100644 index 0000000..014d9f3 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/pop-os.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/pop.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/pop.png new file mode 100644 index 0000000..014d9f3 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/pop.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/recovery.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/recovery.png new file mode 100644 index 0000000..7b69b14 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/recovery.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/regolith.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/regolith.png new file mode 100644 index 0000000..5ece07b Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/regolith.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/restart.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/restart.png new file mode 100644 index 0000000..9715302 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/restart.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/rocky.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/rocky.png new file mode 100644 index 0000000..be144f6 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/rocky.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/shutdown.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/shutdown.png new file mode 100644 index 0000000..fc9cf16 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/shutdown.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/siduction.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/siduction.png new file mode 100644 index 0000000..d16549b Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/siduction.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/slackware.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/slackware.png new file mode 100644 index 0000000..4c31a3f Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/slackware.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/solus.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/solus.png new file mode 100644 index 0000000..338718b Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/solus.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/steamos.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/steamos.png new file mode 100644 index 0000000..df28bcc Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/steamos.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/type.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/type.png new file mode 100644 index 0000000..5c48476 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/type.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/tz.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/tz.png new file mode 100644 index 0000000..220b29b Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/tz.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/ubuntu.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/ubuntu.png new file mode 100644 index 0000000..352fbe0 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/ubuntu.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/unknown.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/unknown.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/unknown.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/unset.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/unset.png new file mode 100644 index 0000000..15e3d3c Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/unset.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/ventoy.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/ventoy.png new file mode 100644 index 0000000..7abdc6c Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/ventoy.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/void.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/void.png new file mode 100644 index 0000000..01cc2f3 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/void.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/windows.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/windows.png new file mode 100644 index 0000000..d5c7cc3 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/windows.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/windows11.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/windows11.png new file mode 100644 index 0000000..fe97d9f Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/windows11.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xero.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xero.png new file mode 100644 index 0000000..2221c73 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xero.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xerolinux.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xerolinux.png new file mode 100644 index 0000000..2221c73 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xerolinux.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xubuntu.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xubuntu.png new file mode 100644 index 0000000..f43abc7 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/xubuntu.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/zorin.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/zorin.png new file mode 100644 index 0000000..c1506c4 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/icons/zorin.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_c.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_c.png new file mode 100644 index 0000000..b1f8d58 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_c.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_e.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_e.png new file mode 100644 index 0000000..9332368 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_e.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_w.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_w.png new file mode 100644 index 0000000..28f6424 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/select_w.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_c.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_c.png new file mode 100644 index 0000000..d0dd52a Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_c.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_e.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_e.png new file mode 100644 index 0000000..394cbe4 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_e.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_n.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_n.png new file mode 100644 index 0000000..476f8bc Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_n.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_ne.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_ne.png new file mode 100644 index 0000000..9e26959 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_ne.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_nw.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_nw.png new file mode 100644 index 0000000..5c3cba8 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_nw.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_s.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_s.png new file mode 100644 index 0000000..85a8901 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_s.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_se.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_se.png new file mode 100644 index 0000000..d8627ee Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_se.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_sw.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_sw.png new file mode 100644 index 0000000..67c600c Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_sw.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_w.png b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_w.png new file mode 100644 index 0000000..d066e2d Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminal_box_w.png differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-12.pf2 b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-12.pf2 new file mode 100644 index 0000000..6092035 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-12.pf2 differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-14.pf2 b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-14.pf2 new file mode 100644 index 0000000..8ab8bd1 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-14.pf2 differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-16.pf2 b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-16.pf2 new file mode 100644 index 0000000..6e6b25d Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-16.pf2 differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-18.pf2 b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-18.pf2 new file mode 100644 index 0000000..129cef1 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/terminus-18.pf2 differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/theme.txt b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/theme.txt new file mode 100644 index 0000000..c666b67 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/theme.txt @@ -0,0 +1,42 @@ +# Main options +title-text: "" +desktop-image: "background.png" +desktop-color: "#000000" +terminal-font: "Terminus Regular 14" +terminal-box: "terminal_box_*.png" +terminal-left: "0" +terminal-top: "0" +terminal-width: "100%" +terminal-height: "100%" +terminal-border: "0" + +# Boot menu ++ boot_menu { + left = 15% + top = 40% + width = 85% + height = 65% + item_font = "Ubuntu Regular 20" + item_color = "#cccccc" + selected_item_color = "#ffffff" + icon_width = 36 + icon_height = 36 + item_icon_space = 20 + item_height = 40 + item_padding = 2 + item_spacing = 10 + selected_item_pixmap_style = "select_*.png" +} + + +# Countdown label +# You can change the name of default starting OS here ++ label { + left = 15% + top = 31% + align = "center" + id = "__timeout__" + text = "Peppermint will start in %d seconds" + color = "#cccccc" + font = "Ubuntu Regular 17" +} diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_17.pf2 b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_17.pf2 new file mode 100644 index 0000000..9405954 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_17.pf2 differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_20.pf2 b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_20.pf2 new file mode 100644 index 0000000..3d903ba Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_20.pf2 differ diff --git a/PepDeb_arm64/peploadersplash/boot/grub/splash.png b/PepDeb_arm64/peploadersplash/boot/grub/splash.png new file mode 100644 index 0000000..6965387 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/boot/grub/splash.png differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/addrk.cfg b/PepDeb_arm64/peploadersplash/isolinux/addrk.cfg new file mode 100644 index 0000000..e9074de --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/addrk.cfg @@ -0,0 +1,9 @@ +label expertdark + menu label E^xpert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz theme=dark --- +include rqdrk.cfg +label autodark + menu label ^Automated install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/addrkgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/addrkgtk.cfg new file mode 100644 index 0000000..6d813dd --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/addrkgtk.cfg @@ -0,0 +1,12 @@ +menu hshift 9 +menu width 58 + +label expertdarkgui + menu label Graphical expert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz theme=dark --- +include rqdrkgtk.cfg +label autodarkgui + menu label Graphical automated install + kernel /install/gtk/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/adgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/adgtk.cfg new file mode 100644 index 0000000..4aaf4dc --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/adgtk.cfg @@ -0,0 +1,12 @@ +menu hshift 9 +menu width 58 + +label expertgui + menu label Graphical expert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz --- +include rqgtk.cfg +label autogui + menu label Graphical automated install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/adspkgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/adspkgtk.cfg new file mode 100644 index 0000000..60f5df9 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/adspkgtk.cfg @@ -0,0 +1,19 @@ +menu hshift 9 +menu width 58 + +menu begin adspk + menu label ^Speech-enabled advanced options + menu title Speech-enabled advanced options + label advancedmenu + menu label ^Back.. + menu exit + label expertspk + menu label E^xpert speech install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz speakup.synth=soft --- + include rqspkgtk.cfg + label autospk + menu label ^Automated speech install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz speakup.synth=soft --- quiet +menu end diff --git a/PepDeb_arm64/peploadersplash/isolinux/adtxt.cfg b/PepDeb_arm64/peploadersplash/isolinux/adtxt.cfg new file mode 100644 index 0000000..acb1e3c --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/adtxt.cfg @@ -0,0 +1,9 @@ +label expert + menu label E^xpert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz --- +include rqtxt.cfg +label auto + menu label ^Automated install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/boot.cat b/PepDeb_arm64/peploadersplash/isolinux/boot.cat new file mode 100644 index 0000000..a52d039 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/boot.cat differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/drk.cfg b/PepDeb_arm64/peploadersplash/isolinux/drk.cfg new file mode 100644 index 0000000..25acc00 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/drk.cfg @@ -0,0 +1,6 @@ +label installdark +default installdark + menu label ^Install + menu default + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/drkgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/drkgtk.cfg new file mode 100644 index 0000000..cbb93b6 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/drkgtk.cfg @@ -0,0 +1,6 @@ +label installdarkgui +default installdarkgui + menu label ^Graphical install + menu default + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/drkmenu.cfg b/PepDeb_arm64/peploadersplash/isolinux/drkmenu.cfg new file mode 100644 index 0000000..753528a --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/drkmenu.cfg @@ -0,0 +1,21 @@ +menu background #00000000 +menu color title * #FFFFFFFF * +menu color border * #00000000 #00000000 none +menu color unsel * #ffffffff #ff000000 * +menu color hotkey * #ffdddd00 #ff000000 * +menu color sel * #ffffffff #ff808080 * +menu color hotsel * #ffdddd00 #ff808080 * +menu color tabmsg * #ffffffff #00000000 * +menu color help 37;40 #ffdddd00 #00000000 none +# XXX When adjusting vshift, take care that rows is set to a small +# enough value so any possible menu will fit on the screen, +# rather than falling off the bottom. +menu vshift 8 +menu rows 12 +# The help line must be at least one line from the bottom. +menu helpmsgrow 14 +# The command line must be at least one line from the help line. +menu cmdlinerow 16 +menu timeoutrow 16 +menu tabmsgrow 18 +menu tabmsg Press ENTER to boot or TAB to edit a menu entry diff --git a/PepDeb_arm64/peploadersplash/isolinux/exithelp.cfg b/PepDeb_arm64/peploadersplash/isolinux/exithelp.cfg new file mode 100644 index 0000000..3119e65 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/exithelp.cfg @@ -0,0 +1,3 @@ +label menu + kernel vesamenu.c32 + config isolinux.cfg diff --git a/PepDeb_arm64/peploadersplash/isolinux/f1.txt b/PepDeb_arm64/peploadersplash/isolinux/f1.txt new file mode 100644 index 0000000..5451a9b --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f1.txt @@ -0,0 +1,25 @@ + 0fWelcome to Debian GNU/Linux!07 09F107 + +This is a PeppermintOS installation CD-ROM. +It was built 20230311-21:01; d-i 20230311-00:01:40. + +0fHELP INDEX07 + +0fKEY TOPIC07 + +<09F107> This page, the help index. +<09F207> Prerequisites for installing Debian. +<09F307> Boot methods for special ways of using this CD-ROM +<09F407> Additional boot methods; rescue mode. +<09F507> Special boot parameters, overview. +<09F607> Special boot parameters for special machines. +<09F707> Special boot parameters for selected disk controllers. +<09F807> Special boot parameters for the install system. +<09F907> How to get help. +<09F1007> Copyrights and warranties. + +For F1-F9 type control and F then the digit 1-9 +For F10 type control and F then the digit 0 + + +Press F2 through F10 for details, or ENTER to diff --git a/PepDeb_arm64/peploadersplash/isolinux/f10.txt b/PepDeb_arm64/peploadersplash/isolinux/f10.txt new file mode 100644 index 0000000..09dfa12 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f10.txt @@ -0,0 +1,23 @@ + 0fCOPYRIGHTS AND WARRANTIES07 09F1007 + +PeppermintOS is Copyright (C) 2010-2023 Software in the Public Interest, +and others. + +The PepperminOS system is freely redistributable. After installation, +the exact distribution terms for each package are described in the +corresponding file /usr/share/doc/0bpackagename07/copyright. + +PeppermintOS comes with 0fABSOLUTELY NO WARRANTY07, to the extent +permitted by applicable law. + + + + + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to diff --git a/PepDeb_arm64/peploadersplash/isolinux/f2.txt b/PepDeb_arm64/peploadersplash/isolinux/f2.txt new file mode 100644 index 0000000..dc8b754 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f2.txt @@ -0,0 +1,23 @@ + 0fPREREQUISITES FOR INSTALLING PEPPERMINT07 09F207 + +You must have at least 285 megabytes of RAM to use this Debian installer. + +You should have space on your hard disk to create a new disk partition +of at least 1160 megabytes to install the base system. You'll need more +disk space to install additional packages, depending on what you wish +to do with your new Debian system. + +See the Installation Guide or the FAQ for more information; both +documents are available at the Debian web site, 0fhttps://peppermintos.com/07 + +Thank you for choosing PeppermintOS! + + + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to diff --git a/PepDeb_arm64/peploadersplash/isolinux/f3.txt b/PepDeb_arm64/peploadersplash/isolinux/f3.txt new file mode 100644 index 0000000..144d25d --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f3.txt @@ -0,0 +1,25 @@ + 0fBOOT METHODS07 09F307 + +0fAvailable boot methods:07 + +0finstallgui07 + Start the installation using the graphical installer -- this is the + default CD-ROM install +0finstall07 + Start the installation using the text mode installer +0fexpertgui07 + Start the installation in expert mode, for maximum control, using + the graphical installer +0fexpert07 + Start the installation in expert mode using the text mode installer + +To use one of these boot methods, type it at the prompt, optionally +followed by any boot parameters. For example: + boot: install acpi=off + +If unsure, you should use the default boot method, with no special +parameters, by simply pressing enter at the boot prompt. + +Except in expert mode, non-critical kernel boot messages are suppressed. + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDeb_arm64/peploadersplash/isolinux/f4.txt b/PepDeb_arm64/peploadersplash/isolinux/f4.txt new file mode 100644 index 0000000..74de4bf --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f4.txt @@ -0,0 +1,23 @@ + 0fRESCUE MODE07 09F407 + +0fUse one of these boot methods to rescue an existing install:07 + +0frescuegui07 + Boot into rescue mode using the graphical installer. +0frescue07 + Boot into rescue mode. + + + + + +To use one of these boot methods, type it at the prompt, optionally +followed by any boot parameters. For example: + boot: rescue acpi=off + + + + + + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDeb_arm64/peploadersplash/isolinux/f5.txt b/PepDeb_arm64/peploadersplash/isolinux/f5.txt new file mode 100644 index 0000000..6e73913 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f5.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - OVERVIEW07 09F507 + +On a few systems, you may need to specify a parameter at the 0fboot:07 +prompt in order to boot the system. For example, Linux may not be able +to autodetect your hardware, and you may need to explicitly specify +its location or type for it to be recognized. + +For more information about what boot parameters you can use, press: + + <09F607> -- boot parameters for special machines + <09F707> -- boot parameters for various disk controllers + <09F807> -- boot parameters understood by the install system + +Note that to specify a parameter for a particular kernel module, use the form +module.param=value, for example: libata.atapi_enabled=1 + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDeb_arm64/peploadersplash/isolinux/f6.txt b/PepDeb_arm64/peploadersplash/isolinux/f6.txt new file mode 100644 index 0000000..ad8220f --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f6.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - VARIOUS HARDWARE07 09F607 + +You can use the following boot parameters at the 0fboot:07 prompt, +in combination with the boot method (see <09F307>). +If you use hex numbers you have to use the 0x prefix (e.g., 0x300). +0f +HARDWARE PARAMETER TO SPECIFY07 +IBM PS/1 or ValuePoint (IDE disk) 0fhd=0bcylinders0f,0bheads0f,0bsectors07 +Some IBM ThinkPads 0ffloppy.floppy=thinkpad07 +Protect I/O port regions 0freserve=0biobase0f,0bextent07[0f,0b...07] +Laptops with screen display problems 0fvga=77107 +Use first serial port at 9600 baud 0fconsole=ttyS0,9600n807 +Force use of generic IDE driver 0fall_generic_ide=107 +Possible (temporary) workarounds for lockups or other hardware failures: +disable buggy APIC interrupt routing 0fnoapic nolapic07 +(partly) disable ACPI 0facpi=noirq07 or 0facpi=off07 +disable USB 0fnousb07 +poll for interrupts 0firqpoll07 + +For example: + boot: install vga=771 noapic nolapic + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDeb_arm64/peploadersplash/isolinux/f7.txt b/PepDeb_arm64/peploadersplash/isolinux/f7.txt new file mode 100644 index 0000000..bfd39fc --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f7.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - VARIOUS DISK DRIVES07 09F707 + +You can use the following boot parameters at the 0fboot:07 prompt, +in combination with the boot method (see <09F307>). +0f +HARDWARE PARAMETER TO SPECIFY07 +Adaptec 151x, 152x 0faha152x.aha152x=0biobase07[0f,0birq07[0f,0bscsi-id07[0f,0breconnect07]]] +Adaptec 1542 0faha1542.aha1542=0biobase07[0f,0bbuson0f,0bbusoff07[0f,0bdmaspeed07]] +Adaptec 274x, 284x 0faic7xxx.aic7xxx=no_reset07 (enabled if non-zero) +BusLogic SCSI Hosts 0fBusLogic.BusLogic=0biobase07 +Certain DELL machines 0faic7xxx.aic7xxx=no_probe07 + +This list is incomplete, see the kernel's kernel-parameters.txt file +for more. + + + + + +For example: + boot: install aic7xxx.aic7xxx=no_probe + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDeb_arm64/peploadersplash/isolinux/f8.txt b/PepDeb_arm64/peploadersplash/isolinux/f8.txt new file mode 100644 index 0000000..936e212 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f8.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - INSTALLATION SYSTEM07 09F807 + +You can use the following boot parameters at the 0fboot:07 prompt, +in combination with the boot method (see <09F307>). These parameters +control how the installer works. +0f +RESULT PARAMETER07 +Disable framebuffer 0fvga=normal fb=false07 +Don't start PCMCIA 0fhw-detect/start_pcmcia=false07 +Force static network config 0fnetcfg/disable_dhcp=true07 +Set keyboard map 0fbootkbd=es07 +Select the desktop 0fdesktop=kde07 + +Accessibility options (last 2 options not available for all images): + Use dark contrast theme 0ftheme=dark07 + Use Braille tty 0fbrltty=driver,device,texttable07 + Use Speakup 0fspeakup.synth=driver07 + + +For example: + boot: install vga=normal fb=false + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDeb_arm64/peploadersplash/isolinux/f9.txt b/PepDeb_arm64/peploadersplash/isolinux/f9.txt new file mode 100644 index 0000000..b6bdb3e --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/f9.txt @@ -0,0 +1,23 @@ + 0fGETTING HELP07 09F907 + +If you can't install Debian, don't despair! The PepperminOS team is ready to +help you! We are especially interested in hearing about installation +problems, because in general they don't happen to only 0fone07 person. +We've either already heard about your particular problem and can dispense a +quick fix, or we would like to hear about it and work through it with you, +and the next user who comes up with the same problem will profit from your +experience! + +See the Installation Guide or the FAQ for more information; both +documents are available at the Debian web site, 0fhttps://peppermintos.com/07 + + + + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to diff --git a/PepDeb_arm64/peploadersplash/isolinux/g2ldr b/PepDeb_arm64/peploadersplash/isolinux/g2ldr new file mode 100644 index 0000000..f5da412 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/g2ldr differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/g2ldr.mbr b/PepDeb_arm64/peploadersplash/isolinux/g2ldr.mbr new file mode 100644 index 0000000..2cdd88a Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/g2ldr.mbr differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/gtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/gtk.cfg new file mode 100644 index 0000000..1d3a185 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/gtk.cfg @@ -0,0 +1,6 @@ +default installgui +label installgui + menu label ^Graphical install + menu default + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/isolinux.bin b/PepDeb_arm64/peploadersplash/isolinux/isolinux.bin new file mode 100644 index 0000000..95329f8 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/isolinux.bin differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/isolinux.cfg b/PepDeb_arm64/peploadersplash/isolinux/isolinux.cfg new file mode 100644 index 0000000..312653c --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/isolinux.cfg @@ -0,0 +1,7 @@ +# D-I config version 2.0 +# search path for the c32 support libraries (libcom32, libutil etc.) +path +prompt 0 +timeout 0 +include menu.cfg +default vesamenu.c32 diff --git a/PepDeb_arm64/peploadersplash/isolinux/ldlinux.c32 b/PepDeb_arm64/peploadersplash/isolinux/ldlinux.c32 new file mode 100644 index 0000000..e94389b Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/ldlinux.c32 differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/libcom32.c32 b/PepDeb_arm64/peploadersplash/isolinux/libcom32.c32 new file mode 100644 index 0000000..c4265b9 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/libcom32.c32 differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/libutil.c32 b/PepDeb_arm64/peploadersplash/isolinux/libutil.c32 new file mode 100644 index 0000000..6fc1da7 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/libutil.c32 differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/menu.cfg b/PepDeb_arm64/peploadersplash/isolinux/menu.cfg new file mode 100644 index 0000000..cf652c3 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/menu.cfg @@ -0,0 +1,55 @@ +menu hshift 4 +menu width 70 + +menu title PeppermintOS net installer menu (BIOS mode) +include stdmenu.cfg +include gtk.cfg +include txt.cfg +menu begin advanced + menu label ^Advanced options + menu title Advanced options + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include adgtk.cfg + include adtxt.cfg + include adspkgtk.cfg + include adspk.cfg +menu end +menu begin dark + menu label Accessible ^dark contrast installer menu + menu title Accessible dark contrast option + include drkmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include drkgtk.cfg + include drk.cfg + menu begin advanced + menu label ^Advanced options + menu title Advanced options + include drkmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include addrkgtk.cfg + include addrk.cfg + menu end + include x86drkme.cfg + label help + menu label ^Help + text help + Display help screens; type 'menu' at boot prompt to return to this menu + endtext + config prompt.cfg +menu end +include x86menu.cfg +label help + menu label ^Help + text help + Display help screens; type 'menu' at boot prompt to return to this menu + endtext + config prompt.cfg +include spkgtk.cfg +include spk.cfg diff --git a/PepDeb_arm64/peploadersplash/isolinux/prompt.cfg b/PepDeb_arm64/peploadersplash/isolinux/prompt.cfg new file mode 100644 index 0000000..3076499 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/prompt.cfg @@ -0,0 +1,16 @@ +prompt 1 +display f1.txt +timeout 0 +include menu.cfg +include exithelp.cfg + +f1 f1.txt +f2 f2.txt +f3 f3.txt +f4 f4.txt +f5 f5.txt +f6 f6.txt +f7 f7.txt +f8 f8.txt +f9 f9.txt +f10 f10.txt diff --git a/PepDeb_arm64/peploadersplash/isolinux/rqdrk.cfg b/PepDeb_arm64/peploadersplash/isolinux/rqdrk.cfg new file mode 100644 index 0000000..c30ed87 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/rqdrk.cfg @@ -0,0 +1,4 @@ +label rescuedark + menu label ^Rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true theme=dark --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/rqdrkgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/rqdrkgtk.cfg new file mode 100644 index 0000000..2f74702 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/rqdrkgtk.cfg @@ -0,0 +1,4 @@ +label rescuedarkgui + menu label Graphical rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true theme=dark --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/rqgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/rqgtk.cfg new file mode 100644 index 0000000..322cd86 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/rqgtk.cfg @@ -0,0 +1,4 @@ +label rescuegui + menu label Graphical rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/rqspkgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/rqspkgtk.cfg new file mode 100644 index 0000000..1d7c10b --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/rqspkgtk.cfg @@ -0,0 +1,4 @@ +label rescuespk + menu label ^Rescue speech mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true speakup.synth=soft --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/rqtxt.cfg b/PepDeb_arm64/peploadersplash/isolinux/rqtxt.cfg new file mode 100644 index 0000000..fdb931c --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/rqtxt.cfg @@ -0,0 +1,4 @@ +label rescue + menu label ^Rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/setup.exe b/PepDeb_arm64/peploadersplash/isolinux/setup.exe new file mode 100644 index 0000000..8f62e8f Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/setup.exe differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/spkgtk.cfg b/PepDeb_arm64/peploadersplash/isolinux/spkgtk.cfg new file mode 100644 index 0000000..bb75f57 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/spkgtk.cfg @@ -0,0 +1,8 @@ +label installspk + menu label Install with ^speech synthesis + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz speakup.synth=soft --- quiet +# timeout to speech-enabled install +timeout 300 +ontimeout /install/vmlinuz vga=788 initrd=/install/gtk/initrd.gz speakup.synth=soft --- quiet +menu autoboot Press a key, otherwise speech synthesis will be started in # second{,s}... diff --git a/PepDeb_arm64/peploadersplash/isolinux/splash.png b/PepDeb_arm64/peploadersplash/isolinux/splash.png new file mode 100644 index 0000000..6965387 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/splash.png differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/stdmenu.cfg b/PepDeb_arm64/peploadersplash/isolinux/stdmenu.cfg new file mode 100644 index 0000000..f5ff63f --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/stdmenu.cfg @@ -0,0 +1,19 @@ +menu background splash.png +menu color title * #FFFFFFFF * +menu color border * #00000000 #00000000 none +menu color sel * #ffffffff #76a1d0ff * +menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff * +menu color tabmsg * #ffffffff #00000000 * +menu color help 37;40 #ffdddd00 #00000000 none +# XXX When adjusting vshift, take care that rows is set to a small +# enough value so any possible menu will fit on the screen, +# rather than falling off the bottom. +menu vshift 8 +menu rows 12 +# The help line must be at least one line from the bottom. +menu helpmsgrow 14 +# The command line must be at least one line from the help line. +menu cmdlinerow 16 +menu timeoutrow 16 +menu tabmsgrow 18 +menu tabmsg Press ENTER to boot or TAB to edit a menu entry diff --git a/PepDeb_arm64/peploadersplash/isolinux/txt.cfg b/PepDeb_arm64/peploadersplash/isolinux/txt.cfg new file mode 100644 index 0000000..1f0dbc0 --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/txt.cfg @@ -0,0 +1,4 @@ +label install + menu label ^Install + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDeb_arm64/peploadersplash/isolinux/vesamenu.c32 b/PepDeb_arm64/peploadersplash/isolinux/vesamenu.c32 new file mode 100644 index 0000000..bbb65e0 Binary files /dev/null and b/PepDeb_arm64/peploadersplash/isolinux/vesamenu.c32 differ diff --git a/PepDeb_arm64/peploadersplash/isolinux/win32-loader.ini b/PepDeb_arm64/peploadersplash/isolinux/win32-loader.ini new file mode 100644 index 0000000..cdb2f8d --- /dev/null +++ b/PepDeb_arm64/peploadersplash/isolinux/win32-loader.ini @@ -0,0 +1,11 @@ +[installer] +kernel=linux +arch=amd64 +amd64/linux=install/vmlinuz +amd64/initrd=install/initrd.gz +amd64/gtk/linux=install/vmlinuz +amd64/gtk/initrd=install/initrd.gz + +[grub] +g2ldr=g2ldr +g2ldr.mbr=g2ldr.mbr diff --git a/PepDeb_arm64/peprepo b/PepDeb_arm64/peprepo new file mode 120000 index 0000000..f71af40 --- /dev/null +++ b/PepDeb_arm64/peprepo @@ -0,0 +1 @@ +../peprepo \ No newline at end of file diff --git a/PepDev32.sh b/PepDev32.sh new file mode 100755 index 0000000..d865f08 --- /dev/null +++ b/PepDev32.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# This is a helper script used to do the actual build. +# By running this script , as "sudo" you can easily build a new PeppermintOS ISO from our CI|CD pipeline. + + +[ -x ./PepDev32/pepbld.sh ] && (cd PepDev32 ; sudo ./pepbld.sh ; cd ../) + diff --git a/PepDev32/BldHelper-release.sh b/PepDev32/BldHelper-release.sh new file mode 100755 index 0000000..1b5b4ff --- /dev/null +++ b/PepDev32/BldHelper-release.sh @@ -0,0 +1,78 @@ + #!/bin/bash + +# BldHelper-release.sh +# This script is meant to be run on the build server and expects to find and update itself from adjacent repos. +# From PepDistroConfigs, these repos are ../PepProPixMaps & ../PepProTools and are vital to having a working build. + +### ## # Set build working variables HERE # ## ### + +PREFIX=PepMiniDev # Sets a unique final name of the ISO and checksum so only removes 2 files . +SUFFIX=i386 # Also used by . And to distinguish between amd64 and x86 or devuan and ubuntu . +BUILD=release # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable] + +################################################## +### ## # Make NO Edits Below This Line !! # ## ### +################################################## + +TODAY=$(date -u +"%Y-%m-%d") && export TODAY # If MasterBuilder.sh is used IT will set the date. If not used, we set it here. +FileName="${PREFIX}-${SUFFIX}" # This will give a uniquely named and dated ISO and checksum for . +LOCATION=/var/www/html/${BUILD} # Tells and the script which 2 files to remove and where to put them. +LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build. +WorkingDir=~/pepadmin/PepMini/PepDev32 # If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. * +OutFile="/tmp/${PREFIX}${SUFFIX}.out" +LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log" +_cache="./cache" +_break=0 ; _wait=30 # Time (in seconds) to wait + +# Run the build script. + ./pepbld.sh 2>&1 | tee -a ${OutFile} + + +# Timing matters, don't destroy the old one without a replacement. +# Check for the ISO to appear and wait for things to settle. +until [ -e fusato/*.iso ] + do ((++_break)) + [ $_break -gt $_wait ] && break || sleep 1 +done + +if [ ${_break} -lt ${_wait} ] ; then + +mv fusato/*.iso fusato/${FileName}.iso + +# Make the checksum file. +cd fusato +echo "# ${FileName} ${TODAY}" > ${FileName}-sha512.checksum +sha512sum ${FileName}.iso >> ${FileName}-sha512.checksum + +### +# Remove the previous files in ${LOCATION} . +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum +#rm -f ${LOCATION}/${FileName}*.torrent + +#mv $(FileName}* ${LOCATION}/ +mv ${FileName}.iso ${LOCATION}/${FileName}.iso +mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum + +# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}* +touch ${LOCATION}/${FileName}* + +lb clean & + +# Move the log file to the log directory. +[ ! -e ${LogDir} ] && mkdir -p ${LogDir} +mv ${OutFile} ${LogFile} + +# Remove old packages from the cache directory +for i in $(grep "Del " ${LogFile} | sort -u | cut -f2,3 -d" " | tr " " "_" | tr ":" "*" | tr "+" "*" ) + do for j in $_cache/packages.*/${i}*.deb + do [ -e $j ] && rm $j + done +done + +### + +else echo -e "\n\tAfter $_break seconds, ISO never appeared.\n" | tee --append ${OutFile} + mv ${OutFile} ${LogFile} +fi + diff --git a/pepbld-dev-32.sh b/PepDev32/pepbld.sh similarity index 96% rename from pepbld-dev-32.sh rename to PepDev32/pepbld.sh index 101b038..509233e 100755 --- a/pepbld-dev-32.sh +++ b/PepDev32/pepbld.sh @@ -47,8 +47,8 @@ lb config noauto \ "${@}" - # Setup the installer structure +mkdir -p $uchinanchu/fusato/config/archives mkdir -p $uchinanchu/fusato/config/includes.installer mkdir -p $uchinanchu/fusato/config/includes.binary mkdir -p $uchinanchu/fusato/config/includes.binary/install @@ -56,6 +56,7 @@ mkdir -p $uchinanchu/fusato/config/includes.installer/usr/share #cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives cp $uchinanchu/pepinstaller/preseed/preseed.cfg $uchinanchu/fusato/config/includes.installer +cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives # Copy recursive files and sub-directories, containing symlinks. cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary diff --git a/PepDev32/pepinstaller b/PepDev32/pepinstaller new file mode 120000 index 0000000..1be46a8 --- /dev/null +++ b/PepDev32/pepinstaller @@ -0,0 +1 @@ +../pepinstaller \ No newline at end of file diff --git a/PepDev32/peploadersplash b/PepDev32/peploadersplash new file mode 120000 index 0000000..16998cf --- /dev/null +++ b/PepDev32/peploadersplash @@ -0,0 +1 @@ +../peploadersplash \ No newline at end of file diff --git a/PepDev32/peprepo b/PepDev32/peprepo new file mode 120000 index 0000000..f71af40 --- /dev/null +++ b/PepDev32/peprepo @@ -0,0 +1 @@ +../peprepo \ No newline at end of file diff --git a/PepDev64.sh b/PepDev64.sh new file mode 100755 index 0000000..62ed2a7 --- /dev/null +++ b/PepDev64.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# This is a helper script used to do the actual build. +# By running this script , as "sudo" you can easily build a new PeppermintOS ISO from our CI|CD pipeline. + + +[ -x ./PepDev64/pepbld.sh ] && (cd PepDev64 ; sudo ./pepbld.sh ; cd ../) + diff --git a/PepDev64/BldHelper-release.sh b/PepDev64/BldHelper-release.sh new file mode 100755 index 0000000..3857b86 --- /dev/null +++ b/PepDev64/BldHelper-release.sh @@ -0,0 +1,78 @@ + #!/bin/bash + +# BldHelper-release.sh +# This script is meant to be run on the build server and expects to find and update itself from adjacent repos. +# From PepDistroConfigs, these repos are ../PepProPixMaps & ../PepProTools and are vital to having a working build. + +### ## # Set build working variables HERE # ## ### + +PREFIX=PepMiniDev # Sets a unique final name of the ISO and checksum so only removes 2 files . +SUFFIX=amd64 # Also used by . And to distinguish between amd64 and x86 or devuan and ubuntu . +BUILD=release # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable] + +################################################## +### ## # Make NO Edits Below This Line !! # ## ### +################################################## + +TODAY=$(date -u +"%Y-%m-%d") && export TODAY # If MasterBuilder.sh is used IT will set the date. If not used, we set it here. +FileName="${PREFIX}-${SUFFIX}" # This will give a uniquely named and dated ISO and checksum for . +LOCATION=/var/www/html/${BUILD} # Tells and the script which 2 files to remove and where to put them. +LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build. +WorkingDir=~/pepadmin/PepMini/PepDev64 # If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. * +OutFile="/tmp/${PREFIX}${SUFFIX}.out" +LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log" +_cache="./cache" +_break=0 ; _wait=30 # Time (in seconds) to wait + +# Run the build script. + ./pepbld.sh 2>&1 | tee -a ${OutFile} + + +# Timing matters, don't destroy the old one without a replacement. +# Check for the ISO to appear and wait for things to settle. +until [ -e fusato/*.iso ] + do ((++_break)) + [ $_break -gt $_wait ] && break || sleep 1 +done + +if [ ${_break} -lt ${_wait} ] ; then + +mv fusato/*.iso fusato/${FileName}.iso + +# Make the checksum file. +cd fusato +echo "# ${FileName} ${TODAY}" > ${FileName}-sha512.checksum +sha512sum ${FileName}.iso >> ${FileName}-sha512.checksum + +### +# Remove the previous files in ${LOCATION} . +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum +#rm -f ${LOCATION}/${FileName}*.torrent + +#mv $(FileName}* ${LOCATION}/ +mv ${FileName}.iso ${LOCATION}/${FileName}.iso +mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum + +# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}* +touch ${LOCATION}/${FileName}* + +lb clean & + +# Move the log file to the log directory. +[ ! -e ${LogDir} ] && mkdir -p ${LogDir} +mv ${OutFile} ${LogFile} + +# Remove old packages from the cache directory +for i in $(grep "Del " ${LogFile} | sort -u | cut -f2,3 -d" " | tr " " "_" | tr ":" "*" | tr "+" "*" ) + do for j in $_cache/packages.*/${i}*.deb + do [ -e $j ] && rm $j + done +done + +### + +else echo -e "\n\tAfter $_break seconds, ISO never appeared.\n" | tee --append ${OutFile} + mv ${OutFile} ${LogFile} +fi + diff --git a/pepbld-dev-64.sh b/PepDev64/pepbld.sh similarity index 96% rename from pepbld-dev-64.sh rename to PepDev64/pepbld.sh index fa1611f..a32fad9 100755 --- a/pepbld-dev-64.sh +++ b/PepDev64/pepbld.sh @@ -48,8 +48,8 @@ lb config noauto \ --backports true \ "${@}" - # Setup the installer structure +mkdir -p $uchinanchu/fusato/config/archives mkdir -p $uchinanchu/fusato/config/includes.installer mkdir -p $uchinanchu/fusato/config/includes.binary mkdir -p $uchinanchu/fusato/config/includes.binary/install @@ -57,6 +57,7 @@ mkdir -p $uchinanchu/fusato/config/includes.installer/usr/share #cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives cp $uchinanchu/pepinstaller/preseed/preseed.cfg $uchinanchu/fusato/config/includes.installer +cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives # Copy recursive files and sub-directories, containing symlinks. cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary diff --git a/PepDev64/pepinstaller b/PepDev64/pepinstaller new file mode 120000 index 0000000..1be46a8 --- /dev/null +++ b/PepDev64/pepinstaller @@ -0,0 +1 @@ +../pepinstaller \ No newline at end of file diff --git a/PepDev64/peploadersplash b/PepDev64/peploadersplash new file mode 120000 index 0000000..16998cf --- /dev/null +++ b/PepDev64/peploadersplash @@ -0,0 +1 @@ +../peploadersplash \ No newline at end of file diff --git a/PepDev64/peprepo b/PepDev64/peprepo new file mode 120000 index 0000000..f71af40 --- /dev/null +++ b/PepDev64/peprepo @@ -0,0 +1 @@ +../peprepo \ No newline at end of file diff --git a/PepDev_arm64.sh b/PepDev_arm64.sh new file mode 100755 index 0000000..0c50b48 --- /dev/null +++ b/PepDev_arm64.sh @@ -0,0 +1,8 @@ +#!/bin/bash + +# This is a helper script used to do the actual build. +# By running this script , as "sudo" you can easily build a new PeppermintOS ISO from our CI|CD pipeline. + + +[ -x ./PepDev_arm64/pepbld.sh ] && (cd PepDev_arm64 ; sudo ./pepbld.sh ; cd ../) + diff --git a/PepDev_arm64/BldHelper-release.sh b/PepDev_arm64/BldHelper-release.sh new file mode 100755 index 0000000..3904716 --- /dev/null +++ b/PepDev_arm64/BldHelper-release.sh @@ -0,0 +1,78 @@ + #!/bin/bash + +# BldHelper-release.sh +# This script is meant to be run on the build server and expects to find and update itself from adjacent repos. +# From PepDistroConfigs, these repos are ../PepProPixMaps & ../PepProTools and are vital to having a working build. + +### ## # Set build working variables HERE # ## ### + +PREFIX=PepMiniDev # Sets a unique final name of the ISO and checksum so only removes 2 files . +SUFFIX=arm64 # Also used by . And to distinguish between amd64 and x86 or devuan and ubuntu . +BUILD=release # Sets which pepbld.sh to use and the location in /var/www/html/[release|rc|testing|nightly|unstable] + +################################################## +### ## # Make NO Edits Below This Line !! # ## ### +################################################## + +TODAY=$(date -u +"%Y-%m-%d") && export TODAY # If MasterBuilder.sh is used IT will set the date. If not used, we set it here. +FileName="${PREFIX}-${SUFFIX}" # This will give a uniquely named and dated ISO and checksum for . +LOCATION=/var/www/html/${BUILD} # Tells and the script which 2 files to remove and where to put them. +LogDir=/var/log/Live-Build # This folder contains a log for the last $[PREFIX]-$[SUFFIX] build. +WorkingDir=~/pepadmin/PepMini/PepDev_arm64 # If we change servers or locations T*H*I*S line is the O*N*L*Y line to change. * +OutFile="/tmp/${PREFIX}${SUFFIX}.out" +LogFile="${LogDir}/${PREFIX}-${SUFFIX}-${BUILD}.log" +_cache="./cache" +_break=0 ; _wait=30 # Time (in seconds) to wait + +# Run the build script. + ./pepbld.sh 2>&1 | tee -a ${OutFile} + + +# Timing matters, don't destroy the old one without a replacement. +# Check for the ISO to appear and wait for things to settle. +until [ -e fusato/*.iso ] + do ((++_break)) + [ $_break -gt $_wait ] && break || sleep 1 +done + +if [ ${_break} -lt ${_wait} ] ; then + +mv fusato/*.iso fusato/${FileName}.iso + +# Make the checksum file. +cd fusato +echo "# ${FileName} ${TODAY}" > ${FileName}-sha512.checksum +sha512sum ${FileName}.iso >> ${FileName}-sha512.checksum + +### +# Remove the previous files in ${LOCATION} . +rm -f ${LOCATION}/${FileName}*.iso +rm -f ${LOCATION}/${FileName}*-sha512.checksum +#rm -f ${LOCATION}/${FileName}*.torrent + +#mv $(FileName}* ${LOCATION}/ +mv ${FileName}.iso ${LOCATION}/${FileName}.iso +mv ${FileName}-sha512.checksum ${LOCATION}/${FileName}-sha512.checksum + +# touch -t ${_stamp} ${LOCATION} ${LOCATION}/${FileName}* +touch ${LOCATION}/${FileName}* + +lb clean & + +# Move the log file to the log directory. +[ ! -e ${LogDir} ] && mkdir -p ${LogDir} +mv ${OutFile} ${LogFile} + +# Remove old packages from the cache directory +for i in $(grep "Del " ${LogFile} | sort -u | cut -f2,3 -d" " | tr " " "_" | tr ":" "*" | tr "+" "*" ) + do for j in $_cache/packages.*/${i}*.deb + do [ -e $j ] && rm $j + done +done + +### + +else echo -e "\n\tAfter $_break seconds, ISO never appeared.\n" | tee --append ${OutFile} + mv ${OutFile} ${LogFile} +fi + diff --git a/pepbld-dev-arm64.sh b/PepDev_arm64/pepbld.sh similarity index 96% rename from pepbld-dev-arm64.sh rename to PepDev_arm64/pepbld.sh index c74fcfe..83aadcc 100755 --- a/pepbld-dev-arm64.sh +++ b/PepDev_arm64/pepbld.sh @@ -52,8 +52,8 @@ lb config noauto \ --backports true \ "${@}" - # Setup the installer structure +mkdir -p $uchinanchu/fusato/config/archives mkdir -p $uchinanchu/fusato/config/includes.installer mkdir -p $uchinanchu/fusato/config/includes.binary mkdir -p $uchinanchu/fusato/config/includes.binary/install @@ -61,6 +61,7 @@ mkdir -p $uchinanchu/fusato/config/includes.installer/usr/share #cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives cp $uchinanchu/pepinstaller/preseed/preseed.cfg $uchinanchu/fusato/config/includes.installer +cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives # Copy recursive files and sub-directories, containing symlinks. cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary diff --git a/PepDev_arm64/pepinstaller b/PepDev_arm64/pepinstaller new file mode 120000 index 0000000..1be46a8 --- /dev/null +++ b/PepDev_arm64/pepinstaller @@ -0,0 +1 @@ +../pepinstaller \ No newline at end of file diff --git a/PepDev_arm64/peploadersplash/boot/grub/font.pf2 b/PepDev_arm64/peploadersplash/boot/grub/font.pf2 new file mode 100644 index 0000000..59e8ffa Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/font.pf2 differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/grub.cfg b/PepDev_arm64/peploadersplash/boot/grub/grub.cfg new file mode 100644 index 0000000..76340d9 --- /dev/null +++ b/PepDev_arm64/peploadersplash/boot/grub/grub.cfg @@ -0,0 +1,96 @@ +if loadfont $prefix/font.pf2 ; then + set gfxmode=800x600 + set gfxpayload=keep + insmod efi_gop + insmod efi_uga + insmod video_bochs + insmod video_cirrus + insmod gfxterm + insmod png + terminal_output gfxterm +fi + +if background_image /isolinux/splash.png; then + set color_normal=light-gray/black + set color_highlight=white/black +elif background_image /splash.png; then + set color_normal=light-gray/black + set color_highlight=white/black +else + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue +fi + +source /boot/grub/config.cfg + +insmod play +play 960 440 1 0 4 440 1 +set theme=/boot/grub/live-theme/theme.txt +menuentry --hotkey=g 'Graphical install' { + set background_color=black + linux /install/vmlinuz vga=788 --- quiet + initrd /install/initrd.gz +} +menuentry --hotkey=i 'Install' { + set background_color=black + linux /install/vmlinuz vga=788 --- quiet + initrd /install/initrd.gz +} +submenu --hotkey=a 'Advanced options ...' { + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue + set theme=/boot/grub/live-theme/theme.txt + set gfxpayload=keep + menuentry '... Graphical expert install' { + set background_color=black + linux /install/vmlinuz priority=low vga=788 --- + initrd /install/initrd.gz + } + menuentry '... Graphical rescue mode' { + set background_color=black + linux /install/vmlinuz vga=788 rescue/enable=true --- quiet + initrd /install/initrd.gz + } + menuentry '... Graphical automated install' { + set background_color=black + linux /install/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/initrd.gz + } + menuentry --hotkey=x '... Expert install' { + set background_color=black + linux /install/vmlinuz priority=low vga=788 --- + initrd /install/initrd.gz + } + menuentry --hotkey=r '... Rescue mode' { + set background_color=black + linux /install/vmlinuz vga=788 rescue/enable=true --- quiet + initrd /install/initrd.gz + } + menuentry --hotkey=a '... Automated install' { + set background_color=black + linux /install/vmlinuz auto=true priority=critical vga=788 --- quiet + initrd /install/initrd.gz + } + submenu --hotkey=s '... Speech-enabled advanced options ...' { + set menu_color_normal=cyan/blue + set menu_color_highlight=white/blue + set theme=/boot/grub/live-theme/theme.txt + set gfxpayload=keep + menuentry --hotkey=x '... Expert speech install' { + set background_color=black + linux /install/vmlinuz priority=low vga=788 speakup.synth=soft --- + initrd /install/initrd.gz + } + menuentry --hotkey=r '... Rescue speech mode' { + set background_color=black + linux /install/vmlinuz vga=788 rescue/enable=true speakup.synth=soft --- quiet + initrd /install/initrd.gz + } + menuentry --hotkey=a '... Automated speech install' { + set background_color=black + linux /install/vmlinuz auto=true priority=critical vga=788 speakup.synth=soft --- quiet + initrd /install/initrd.gz + } + } +} + diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/background.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/background.png new file mode 100644 index 0000000..6965387 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/background.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/4MLinux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/4MLinux.png new file mode 100644 index 0000000..1c6fe5e Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/4MLinux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/AlpineLinux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/AlpineLinux.png new file mode 100644 index 0000000..6212a1f Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/AlpineLinux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.i686.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.i686.png new file mode 100644 index 0000000..611a6fb Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.i686.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.x86_64.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.x86_64.png new file mode 100644 index 0000000..611a6fb Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/Manjaro.x86_64.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/SystemRescueCD.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/SystemRescueCD.png new file mode 100644 index 0000000..7c41182 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/SystemRescueCD.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/android.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/android.png new file mode 100644 index 0000000..dad066f Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/android.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/anonymous.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/anonymous.png new file mode 100644 index 0000000..7d165b6 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/anonymous.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/antergos.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/antergos.png new file mode 100644 index 0000000..32e3a3a Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/antergos.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/arch.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/arch.png new file mode 100644 index 0000000..f6cd870 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/arch.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/archlinux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/archlinux.png new file mode 100644 index 0000000..f6cd870 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/archlinux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/arcolinux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/arcolinux.png new file mode 100644 index 0000000..c5e5e5e Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/arcolinux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/artix.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/artix.png new file mode 100644 index 0000000..0cbeb11 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/artix.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/bedrock.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/bedrock.png new file mode 100644 index 0000000..58ff48a Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/bedrock.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/cancel.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/cancel.png new file mode 100644 index 0000000..fca2ac9 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/cancel.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/centos.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/centos.png new file mode 100644 index 0000000..23fe2fa Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/centos.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/chakra.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/chakra.png new file mode 100644 index 0000000..6f63a95 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/chakra.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/debian.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/debian.png new file mode 100644 index 0000000..20bea8c Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/debian.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/deepin.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/deepin.png new file mode 100644 index 0000000..61c92fb Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/deepin.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/devuan.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/devuan.png new file mode 100644 index 0000000..ff65401 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/devuan.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/driver.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/driver.png new file mode 100644 index 0000000..1621ee7 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/driver.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/edit.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/edit.png new file mode 100644 index 0000000..6a43bd9 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/edit.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/efi.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/efi.png new file mode 100644 index 0000000..4ecf3b9 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/efi.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/elementary.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/elementary.png new file mode 100644 index 0000000..2840354 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/elementary.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/endeavouros.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/endeavouros.png new file mode 100644 index 0000000..6b1e530 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/endeavouros.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/fedora.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/fedora.png new file mode 100644 index 0000000..926b56d Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/fedora.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/find.efi.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/find.efi.png new file mode 100644 index 0000000..0e32321 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/find.efi.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/find.none.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/find.none.png new file mode 100644 index 0000000..87d4d0e Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/find.none.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/freebsd.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/freebsd.png new file mode 100644 index 0000000..fb9408c Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/freebsd.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/garuda.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/garuda.png new file mode 100644 index 0000000..f699718 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/garuda.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/gentoo.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/gentoo.png new file mode 100644 index 0000000..bc0ed70 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/gentoo.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/gnu-linux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/gnu-linux.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/gnu-linux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/haiku.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/haiku.png new file mode 100644 index 0000000..ce7f818 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/haiku.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/help.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/help.png new file mode 100644 index 0000000..d8b5a17 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/help.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kali.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kali.png new file mode 100644 index 0000000..900dc82 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kali.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kaos.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kaos.png new file mode 100644 index 0000000..9fd4e89 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kaos.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kbd.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kbd.png new file mode 100644 index 0000000..6ace3ac Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kbd.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/korora.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/korora.png new file mode 100644 index 0000000..456e876 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/korora.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kubuntu.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kubuntu.png new file mode 100644 index 0000000..7a79ff3 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/kubuntu.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lang.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lang.png new file mode 100644 index 0000000..3c9c1d7 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lang.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lfs.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lfs.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lfs.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/linux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/linux.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/linux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/linuxmint.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/linuxmint.png new file mode 100644 index 0000000..7d9da81 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/linuxmint.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lubuntu.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lubuntu.png new file mode 100644 index 0000000..057c8e2 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/lubuntu.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/macosx.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/macosx.png new file mode 100644 index 0000000..ea03e77 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/macosx.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mageia.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mageia.png new file mode 100644 index 0000000..79afa76 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mageia.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/manjaro.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/manjaro.png new file mode 100644 index 0000000..611a6fb Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/manjaro.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mate.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mate.png new file mode 100644 index 0000000..b2fc22a Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mate.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/memtest.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/memtest.png new file mode 100644 index 0000000..1621ee7 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/memtest.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mx-linux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mx-linux.png new file mode 100644 index 0000000..49f1133 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/mx-linux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/neon.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/neon.png new file mode 100644 index 0000000..e41906e Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/neon.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/opensuse.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/opensuse.png new file mode 100644 index 0000000..d844fd5 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/opensuse.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/parrot.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/parrot.png new file mode 100644 index 0000000..3333de9 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/parrot.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/pop-os.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/pop-os.png new file mode 100644 index 0000000..014d9f3 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/pop-os.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/pop.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/pop.png new file mode 100644 index 0000000..014d9f3 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/pop.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/recovery.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/recovery.png new file mode 100644 index 0000000..7b69b14 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/recovery.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/regolith.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/regolith.png new file mode 100644 index 0000000..5ece07b Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/regolith.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/restart.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/restart.png new file mode 100644 index 0000000..9715302 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/restart.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/rocky.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/rocky.png new file mode 100644 index 0000000..be144f6 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/rocky.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/shutdown.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/shutdown.png new file mode 100644 index 0000000..fc9cf16 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/shutdown.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/siduction.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/siduction.png new file mode 100644 index 0000000..d16549b Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/siduction.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/slackware.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/slackware.png new file mode 100644 index 0000000..4c31a3f Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/slackware.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/solus.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/solus.png new file mode 100644 index 0000000..338718b Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/solus.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/steamos.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/steamos.png new file mode 100644 index 0000000..df28bcc Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/steamos.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/type.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/type.png new file mode 100644 index 0000000..5c48476 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/type.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/tz.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/tz.png new file mode 100644 index 0000000..220b29b Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/tz.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/ubuntu.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/ubuntu.png new file mode 100644 index 0000000..352fbe0 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/ubuntu.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/unknown.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/unknown.png new file mode 100644 index 0000000..326b659 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/unknown.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/unset.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/unset.png new file mode 100644 index 0000000..15e3d3c Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/unset.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/ventoy.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/ventoy.png new file mode 100644 index 0000000..7abdc6c Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/ventoy.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/void.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/void.png new file mode 100644 index 0000000..01cc2f3 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/void.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/windows.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/windows.png new file mode 100644 index 0000000..d5c7cc3 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/windows.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/windows11.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/windows11.png new file mode 100644 index 0000000..fe97d9f Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/windows11.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xero.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xero.png new file mode 100644 index 0000000..2221c73 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xero.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xerolinux.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xerolinux.png new file mode 100644 index 0000000..2221c73 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xerolinux.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xubuntu.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xubuntu.png new file mode 100644 index 0000000..f43abc7 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/xubuntu.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/zorin.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/zorin.png new file mode 100644 index 0000000..c1506c4 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/icons/zorin.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_c.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_c.png new file mode 100644 index 0000000..b1f8d58 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_c.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_e.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_e.png new file mode 100644 index 0000000..9332368 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_e.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_w.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_w.png new file mode 100644 index 0000000..28f6424 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/select_w.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_c.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_c.png new file mode 100644 index 0000000..d0dd52a Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_c.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_e.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_e.png new file mode 100644 index 0000000..394cbe4 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_e.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_n.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_n.png new file mode 100644 index 0000000..476f8bc Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_n.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_ne.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_ne.png new file mode 100644 index 0000000..9e26959 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_ne.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_nw.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_nw.png new file mode 100644 index 0000000..5c3cba8 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_nw.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_s.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_s.png new file mode 100644 index 0000000..85a8901 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_s.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_se.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_se.png new file mode 100644 index 0000000..d8627ee Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_se.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_sw.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_sw.png new file mode 100644 index 0000000..67c600c Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_sw.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_w.png b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_w.png new file mode 100644 index 0000000..d066e2d Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminal_box_w.png differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-12.pf2 b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-12.pf2 new file mode 100644 index 0000000..6092035 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-12.pf2 differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-14.pf2 b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-14.pf2 new file mode 100644 index 0000000..8ab8bd1 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-14.pf2 differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-16.pf2 b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-16.pf2 new file mode 100644 index 0000000..6e6b25d Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-16.pf2 differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-18.pf2 b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-18.pf2 new file mode 100644 index 0000000..129cef1 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/terminus-18.pf2 differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/theme.txt b/PepDev_arm64/peploadersplash/boot/grub/live-theme/theme.txt new file mode 100644 index 0000000..c666b67 --- /dev/null +++ b/PepDev_arm64/peploadersplash/boot/grub/live-theme/theme.txt @@ -0,0 +1,42 @@ +# Main options +title-text: "" +desktop-image: "background.png" +desktop-color: "#000000" +terminal-font: "Terminus Regular 14" +terminal-box: "terminal_box_*.png" +terminal-left: "0" +terminal-top: "0" +terminal-width: "100%" +terminal-height: "100%" +terminal-border: "0" + +# Boot menu ++ boot_menu { + left = 15% + top = 40% + width = 85% + height = 65% + item_font = "Ubuntu Regular 20" + item_color = "#cccccc" + selected_item_color = "#ffffff" + icon_width = 36 + icon_height = 36 + item_icon_space = 20 + item_height = 40 + item_padding = 2 + item_spacing = 10 + selected_item_pixmap_style = "select_*.png" +} + + +# Countdown label +# You can change the name of default starting OS here ++ label { + left = 15% + top = 31% + align = "center" + id = "__timeout__" + text = "Peppermint will start in %d seconds" + color = "#cccccc" + font = "Ubuntu Regular 17" +} diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_17.pf2 b/PepDev_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_17.pf2 new file mode 100644 index 0000000..9405954 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_17.pf2 differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_20.pf2 b/PepDev_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_20.pf2 new file mode 100644 index 0000000..3d903ba Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/live-theme/ubuntu_regular_20.pf2 differ diff --git a/PepDev_arm64/peploadersplash/boot/grub/splash.png b/PepDev_arm64/peploadersplash/boot/grub/splash.png new file mode 100644 index 0000000..6965387 Binary files /dev/null and b/PepDev_arm64/peploadersplash/boot/grub/splash.png differ diff --git a/PepDev_arm64/peploadersplash/isolinux/addrk.cfg b/PepDev_arm64/peploadersplash/isolinux/addrk.cfg new file mode 100644 index 0000000..e9074de --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/addrk.cfg @@ -0,0 +1,9 @@ +label expertdark + menu label E^xpert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz theme=dark --- +include rqdrk.cfg +label autodark + menu label ^Automated install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/addrkgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/addrkgtk.cfg new file mode 100644 index 0000000..6d813dd --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/addrkgtk.cfg @@ -0,0 +1,12 @@ +menu hshift 9 +menu width 58 + +label expertdarkgui + menu label Graphical expert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz theme=dark --- +include rqdrkgtk.cfg +label autodarkgui + menu label Graphical automated install + kernel /install/gtk/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/adgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/adgtk.cfg new file mode 100644 index 0000000..4aaf4dc --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/adgtk.cfg @@ -0,0 +1,12 @@ +menu hshift 9 +menu width 58 + +label expertgui + menu label Graphical expert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz --- +include rqgtk.cfg +label autogui + menu label Graphical automated install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/adspkgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/adspkgtk.cfg new file mode 100644 index 0000000..60f5df9 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/adspkgtk.cfg @@ -0,0 +1,19 @@ +menu hshift 9 +menu width 58 + +menu begin adspk + menu label ^Speech-enabled advanced options + menu title Speech-enabled advanced options + label advancedmenu + menu label ^Back.. + menu exit + label expertspk + menu label E^xpert speech install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz speakup.synth=soft --- + include rqspkgtk.cfg + label autospk + menu label ^Automated speech install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz speakup.synth=soft --- quiet +menu end diff --git a/PepDev_arm64/peploadersplash/isolinux/adtxt.cfg b/PepDev_arm64/peploadersplash/isolinux/adtxt.cfg new file mode 100644 index 0000000..acb1e3c --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/adtxt.cfg @@ -0,0 +1,9 @@ +label expert + menu label E^xpert install + kernel /install/vmlinuz + append priority=low vga=788 initrd=/install/initrd.gz --- +include rqtxt.cfg +label auto + menu label ^Automated install + kernel /install/vmlinuz + append auto=true priority=critical vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/boot.cat b/PepDev_arm64/peploadersplash/isolinux/boot.cat new file mode 100644 index 0000000..a52d039 Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/boot.cat differ diff --git a/PepDev_arm64/peploadersplash/isolinux/drk.cfg b/PepDev_arm64/peploadersplash/isolinux/drk.cfg new file mode 100644 index 0000000..25acc00 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/drk.cfg @@ -0,0 +1,6 @@ +label installdark +default installdark + menu label ^Install + menu default + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/drkgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/drkgtk.cfg new file mode 100644 index 0000000..cbb93b6 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/drkgtk.cfg @@ -0,0 +1,6 @@ +label installdarkgui +default installdarkgui + menu label ^Graphical install + menu default + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz theme=dark --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/drkmenu.cfg b/PepDev_arm64/peploadersplash/isolinux/drkmenu.cfg new file mode 100644 index 0000000..753528a --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/drkmenu.cfg @@ -0,0 +1,21 @@ +menu background #00000000 +menu color title * #FFFFFFFF * +menu color border * #00000000 #00000000 none +menu color unsel * #ffffffff #ff000000 * +menu color hotkey * #ffdddd00 #ff000000 * +menu color sel * #ffffffff #ff808080 * +menu color hotsel * #ffdddd00 #ff808080 * +menu color tabmsg * #ffffffff #00000000 * +menu color help 37;40 #ffdddd00 #00000000 none +# XXX When adjusting vshift, take care that rows is set to a small +# enough value so any possible menu will fit on the screen, +# rather than falling off the bottom. +menu vshift 8 +menu rows 12 +# The help line must be at least one line from the bottom. +menu helpmsgrow 14 +# The command line must be at least one line from the help line. +menu cmdlinerow 16 +menu timeoutrow 16 +menu tabmsgrow 18 +menu tabmsg Press ENTER to boot or TAB to edit a menu entry diff --git a/PepDev_arm64/peploadersplash/isolinux/exithelp.cfg b/PepDev_arm64/peploadersplash/isolinux/exithelp.cfg new file mode 100644 index 0000000..3119e65 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/exithelp.cfg @@ -0,0 +1,3 @@ +label menu + kernel vesamenu.c32 + config isolinux.cfg diff --git a/PepDev_arm64/peploadersplash/isolinux/f1.txt b/PepDev_arm64/peploadersplash/isolinux/f1.txt new file mode 100644 index 0000000..5451a9b --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f1.txt @@ -0,0 +1,25 @@ + 0fWelcome to Debian GNU/Linux!07 09F107 + +This is a PeppermintOS installation CD-ROM. +It was built 20230311-21:01; d-i 20230311-00:01:40. + +0fHELP INDEX07 + +0fKEY TOPIC07 + +<09F107> This page, the help index. +<09F207> Prerequisites for installing Debian. +<09F307> Boot methods for special ways of using this CD-ROM +<09F407> Additional boot methods; rescue mode. +<09F507> Special boot parameters, overview. +<09F607> Special boot parameters for special machines. +<09F707> Special boot parameters for selected disk controllers. +<09F807> Special boot parameters for the install system. +<09F907> How to get help. +<09F1007> Copyrights and warranties. + +For F1-F9 type control and F then the digit 1-9 +For F10 type control and F then the digit 0 + + +Press F2 through F10 for details, or ENTER to diff --git a/PepDev_arm64/peploadersplash/isolinux/f10.txt b/PepDev_arm64/peploadersplash/isolinux/f10.txt new file mode 100644 index 0000000..09dfa12 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f10.txt @@ -0,0 +1,23 @@ + 0fCOPYRIGHTS AND WARRANTIES07 09F1007 + +PeppermintOS is Copyright (C) 2010-2023 Software in the Public Interest, +and others. + +The PepperminOS system is freely redistributable. After installation, +the exact distribution terms for each package are described in the +corresponding file /usr/share/doc/0bpackagename07/copyright. + +PeppermintOS comes with 0fABSOLUTELY NO WARRANTY07, to the extent +permitted by applicable law. + + + + + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to diff --git a/PepDev_arm64/peploadersplash/isolinux/f2.txt b/PepDev_arm64/peploadersplash/isolinux/f2.txt new file mode 100644 index 0000000..dc8b754 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f2.txt @@ -0,0 +1,23 @@ + 0fPREREQUISITES FOR INSTALLING PEPPERMINT07 09F207 + +You must have at least 285 megabytes of RAM to use this Debian installer. + +You should have space on your hard disk to create a new disk partition +of at least 1160 megabytes to install the base system. You'll need more +disk space to install additional packages, depending on what you wish +to do with your new Debian system. + +See the Installation Guide or the FAQ for more information; both +documents are available at the Debian web site, 0fhttps://peppermintos.com/07 + +Thank you for choosing PeppermintOS! + + + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to diff --git a/PepDev_arm64/peploadersplash/isolinux/f3.txt b/PepDev_arm64/peploadersplash/isolinux/f3.txt new file mode 100644 index 0000000..144d25d --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f3.txt @@ -0,0 +1,25 @@ + 0fBOOT METHODS07 09F307 + +0fAvailable boot methods:07 + +0finstallgui07 + Start the installation using the graphical installer -- this is the + default CD-ROM install +0finstall07 + Start the installation using the text mode installer +0fexpertgui07 + Start the installation in expert mode, for maximum control, using + the graphical installer +0fexpert07 + Start the installation in expert mode using the text mode installer + +To use one of these boot methods, type it at the prompt, optionally +followed by any boot parameters. For example: + boot: install acpi=off + +If unsure, you should use the default boot method, with no special +parameters, by simply pressing enter at the boot prompt. + +Except in expert mode, non-critical kernel boot messages are suppressed. + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDev_arm64/peploadersplash/isolinux/f4.txt b/PepDev_arm64/peploadersplash/isolinux/f4.txt new file mode 100644 index 0000000..74de4bf --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f4.txt @@ -0,0 +1,23 @@ + 0fRESCUE MODE07 09F407 + +0fUse one of these boot methods to rescue an existing install:07 + +0frescuegui07 + Boot into rescue mode using the graphical installer. +0frescue07 + Boot into rescue mode. + + + + + +To use one of these boot methods, type it at the prompt, optionally +followed by any boot parameters. For example: + boot: rescue acpi=off + + + + + + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDev_arm64/peploadersplash/isolinux/f5.txt b/PepDev_arm64/peploadersplash/isolinux/f5.txt new file mode 100644 index 0000000..6e73913 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f5.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - OVERVIEW07 09F507 + +On a few systems, you may need to specify a parameter at the 0fboot:07 +prompt in order to boot the system. For example, Linux may not be able +to autodetect your hardware, and you may need to explicitly specify +its location or type for it to be recognized. + +For more information about what boot parameters you can use, press: + + <09F607> -- boot parameters for special machines + <09F707> -- boot parameters for various disk controllers + <09F807> -- boot parameters understood by the install system + +Note that to specify a parameter for a particular kernel module, use the form +module.param=value, for example: libata.atapi_enabled=1 + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDev_arm64/peploadersplash/isolinux/f6.txt b/PepDev_arm64/peploadersplash/isolinux/f6.txt new file mode 100644 index 0000000..ad8220f --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f6.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - VARIOUS HARDWARE07 09F607 + +You can use the following boot parameters at the 0fboot:07 prompt, +in combination with the boot method (see <09F307>). +If you use hex numbers you have to use the 0x prefix (e.g., 0x300). +0f +HARDWARE PARAMETER TO SPECIFY07 +IBM PS/1 or ValuePoint (IDE disk) 0fhd=0bcylinders0f,0bheads0f,0bsectors07 +Some IBM ThinkPads 0ffloppy.floppy=thinkpad07 +Protect I/O port regions 0freserve=0biobase0f,0bextent07[0f,0b...07] +Laptops with screen display problems 0fvga=77107 +Use first serial port at 9600 baud 0fconsole=ttyS0,9600n807 +Force use of generic IDE driver 0fall_generic_ide=107 +Possible (temporary) workarounds for lockups or other hardware failures: +disable buggy APIC interrupt routing 0fnoapic nolapic07 +(partly) disable ACPI 0facpi=noirq07 or 0facpi=off07 +disable USB 0fnousb07 +poll for interrupts 0firqpoll07 + +For example: + boot: install vga=771 noapic nolapic + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDev_arm64/peploadersplash/isolinux/f7.txt b/PepDev_arm64/peploadersplash/isolinux/f7.txt new file mode 100644 index 0000000..bfd39fc --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f7.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - VARIOUS DISK DRIVES07 09F707 + +You can use the following boot parameters at the 0fboot:07 prompt, +in combination with the boot method (see <09F307>). +0f +HARDWARE PARAMETER TO SPECIFY07 +Adaptec 151x, 152x 0faha152x.aha152x=0biobase07[0f,0birq07[0f,0bscsi-id07[0f,0breconnect07]]] +Adaptec 1542 0faha1542.aha1542=0biobase07[0f,0bbuson0f,0bbusoff07[0f,0bdmaspeed07]] +Adaptec 274x, 284x 0faic7xxx.aic7xxx=no_reset07 (enabled if non-zero) +BusLogic SCSI Hosts 0fBusLogic.BusLogic=0biobase07 +Certain DELL machines 0faic7xxx.aic7xxx=no_probe07 + +This list is incomplete, see the kernel's kernel-parameters.txt file +for more. + + + + + +For example: + boot: install aic7xxx.aic7xxx=no_probe + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDev_arm64/peploadersplash/isolinux/f8.txt b/PepDev_arm64/peploadersplash/isolinux/f8.txt new file mode 100644 index 0000000..936e212 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f8.txt @@ -0,0 +1,23 @@ + 0fSPECIAL BOOT PARAMETERS - INSTALLATION SYSTEM07 09F807 + +You can use the following boot parameters at the 0fboot:07 prompt, +in combination with the boot method (see <09F307>). These parameters +control how the installer works. +0f +RESULT PARAMETER07 +Disable framebuffer 0fvga=normal fb=false07 +Don't start PCMCIA 0fhw-detect/start_pcmcia=false07 +Force static network config 0fnetcfg/disable_dhcp=true07 +Set keyboard map 0fbootkbd=es07 +Select the desktop 0fdesktop=kde07 + +Accessibility options (last 2 options not available for all images): + Use dark contrast theme 0ftheme=dark07 + Use Braille tty 0fbrltty=driver,device,texttable07 + Use Speakup 0fspeakup.synth=driver07 + + +For example: + boot: install vga=normal fb=false + +Press F1control and F then 1 for the help index, or ENTER to \ No newline at end of file diff --git a/PepDev_arm64/peploadersplash/isolinux/f9.txt b/PepDev_arm64/peploadersplash/isolinux/f9.txt new file mode 100644 index 0000000..b6bdb3e --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/f9.txt @@ -0,0 +1,23 @@ + 0fGETTING HELP07 09F907 + +If you can't install Debian, don't despair! The PepperminOS team is ready to +help you! We are especially interested in hearing about installation +problems, because in general they don't happen to only 0fone07 person. +We've either already heard about your particular problem and can dispense a +quick fix, or we would like to hear about it and work through it with you, +and the next user who comes up with the same problem will profit from your +experience! + +See the Installation Guide or the FAQ for more information; both +documents are available at the Debian web site, 0fhttps://peppermintos.com/07 + + + + + + + + + + +Press F1control and F then 1 for the help index, or ENTER to diff --git a/PepDev_arm64/peploadersplash/isolinux/g2ldr b/PepDev_arm64/peploadersplash/isolinux/g2ldr new file mode 100644 index 0000000..f5da412 Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/g2ldr differ diff --git a/PepDev_arm64/peploadersplash/isolinux/g2ldr.mbr b/PepDev_arm64/peploadersplash/isolinux/g2ldr.mbr new file mode 100644 index 0000000..2cdd88a Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/g2ldr.mbr differ diff --git a/PepDev_arm64/peploadersplash/isolinux/gtk.cfg b/PepDev_arm64/peploadersplash/isolinux/gtk.cfg new file mode 100644 index 0000000..1d3a185 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/gtk.cfg @@ -0,0 +1,6 @@ +default installgui +label installgui + menu label ^Graphical install + menu default + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/isolinux.bin b/PepDev_arm64/peploadersplash/isolinux/isolinux.bin new file mode 100644 index 0000000..95329f8 Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/isolinux.bin differ diff --git a/PepDev_arm64/peploadersplash/isolinux/isolinux.cfg b/PepDev_arm64/peploadersplash/isolinux/isolinux.cfg new file mode 100644 index 0000000..312653c --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/isolinux.cfg @@ -0,0 +1,7 @@ +# D-I config version 2.0 +# search path for the c32 support libraries (libcom32, libutil etc.) +path +prompt 0 +timeout 0 +include menu.cfg +default vesamenu.c32 diff --git a/PepDev_arm64/peploadersplash/isolinux/ldlinux.c32 b/PepDev_arm64/peploadersplash/isolinux/ldlinux.c32 new file mode 100644 index 0000000..e94389b Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/ldlinux.c32 differ diff --git a/PepDev_arm64/peploadersplash/isolinux/libcom32.c32 b/PepDev_arm64/peploadersplash/isolinux/libcom32.c32 new file mode 100644 index 0000000..c4265b9 Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/libcom32.c32 differ diff --git a/PepDev_arm64/peploadersplash/isolinux/libutil.c32 b/PepDev_arm64/peploadersplash/isolinux/libutil.c32 new file mode 100644 index 0000000..6fc1da7 Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/libutil.c32 differ diff --git a/PepDev_arm64/peploadersplash/isolinux/menu.cfg b/PepDev_arm64/peploadersplash/isolinux/menu.cfg new file mode 100644 index 0000000..cf652c3 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/menu.cfg @@ -0,0 +1,55 @@ +menu hshift 4 +menu width 70 + +menu title PeppermintOS net installer menu (BIOS mode) +include stdmenu.cfg +include gtk.cfg +include txt.cfg +menu begin advanced + menu label ^Advanced options + menu title Advanced options + include stdmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include adgtk.cfg + include adtxt.cfg + include adspkgtk.cfg + include adspk.cfg +menu end +menu begin dark + menu label Accessible ^dark contrast installer menu + menu title Accessible dark contrast option + include drkmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include drkgtk.cfg + include drk.cfg + menu begin advanced + menu label ^Advanced options + menu title Advanced options + include drkmenu.cfg + label mainmenu + menu label ^Back.. + menu exit + include addrkgtk.cfg + include addrk.cfg + menu end + include x86drkme.cfg + label help + menu label ^Help + text help + Display help screens; type 'menu' at boot prompt to return to this menu + endtext + config prompt.cfg +menu end +include x86menu.cfg +label help + menu label ^Help + text help + Display help screens; type 'menu' at boot prompt to return to this menu + endtext + config prompt.cfg +include spkgtk.cfg +include spk.cfg diff --git a/PepDev_arm64/peploadersplash/isolinux/prompt.cfg b/PepDev_arm64/peploadersplash/isolinux/prompt.cfg new file mode 100644 index 0000000..3076499 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/prompt.cfg @@ -0,0 +1,16 @@ +prompt 1 +display f1.txt +timeout 0 +include menu.cfg +include exithelp.cfg + +f1 f1.txt +f2 f2.txt +f3 f3.txt +f4 f4.txt +f5 f5.txt +f6 f6.txt +f7 f7.txt +f8 f8.txt +f9 f9.txt +f10 f10.txt diff --git a/PepDev_arm64/peploadersplash/isolinux/rqdrk.cfg b/PepDev_arm64/peploadersplash/isolinux/rqdrk.cfg new file mode 100644 index 0000000..c30ed87 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/rqdrk.cfg @@ -0,0 +1,4 @@ +label rescuedark + menu label ^Rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true theme=dark --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/rqdrkgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/rqdrkgtk.cfg new file mode 100644 index 0000000..2f74702 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/rqdrkgtk.cfg @@ -0,0 +1,4 @@ +label rescuedarkgui + menu label Graphical rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true theme=dark --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/rqgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/rqgtk.cfg new file mode 100644 index 0000000..322cd86 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/rqgtk.cfg @@ -0,0 +1,4 @@ +label rescuegui + menu label Graphical rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/rqspkgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/rqspkgtk.cfg new file mode 100644 index 0000000..1d7c10b --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/rqspkgtk.cfg @@ -0,0 +1,4 @@ +label rescuespk + menu label ^Rescue speech mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true speakup.synth=soft --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/rqtxt.cfg b/PepDev_arm64/peploadersplash/isolinux/rqtxt.cfg new file mode 100644 index 0000000..fdb931c --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/rqtxt.cfg @@ -0,0 +1,4 @@ +label rescue + menu label ^Rescue mode + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz rescue/enable=true --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/setup.exe b/PepDev_arm64/peploadersplash/isolinux/setup.exe new file mode 100644 index 0000000..8f62e8f Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/setup.exe differ diff --git a/PepDev_arm64/peploadersplash/isolinux/spkgtk.cfg b/PepDev_arm64/peploadersplash/isolinux/spkgtk.cfg new file mode 100644 index 0000000..bb75f57 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/spkgtk.cfg @@ -0,0 +1,8 @@ +label installspk + menu label Install with ^speech synthesis + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz speakup.synth=soft --- quiet +# timeout to speech-enabled install +timeout 300 +ontimeout /install/vmlinuz vga=788 initrd=/install/gtk/initrd.gz speakup.synth=soft --- quiet +menu autoboot Press a key, otherwise speech synthesis will be started in # second{,s}... diff --git a/PepDev_arm64/peploadersplash/isolinux/splash.png b/PepDev_arm64/peploadersplash/isolinux/splash.png new file mode 100644 index 0000000..6965387 Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/splash.png differ diff --git a/PepDev_arm64/peploadersplash/isolinux/stdmenu.cfg b/PepDev_arm64/peploadersplash/isolinux/stdmenu.cfg new file mode 100644 index 0000000..f5ff63f --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/stdmenu.cfg @@ -0,0 +1,19 @@ +menu background splash.png +menu color title * #FFFFFFFF * +menu color border * #00000000 #00000000 none +menu color sel * #ffffffff #76a1d0ff * +menu color hotsel 1;7;37;40 #ffffffff #76a1d0ff * +menu color tabmsg * #ffffffff #00000000 * +menu color help 37;40 #ffdddd00 #00000000 none +# XXX When adjusting vshift, take care that rows is set to a small +# enough value so any possible menu will fit on the screen, +# rather than falling off the bottom. +menu vshift 8 +menu rows 12 +# The help line must be at least one line from the bottom. +menu helpmsgrow 14 +# The command line must be at least one line from the help line. +menu cmdlinerow 16 +menu timeoutrow 16 +menu tabmsgrow 18 +menu tabmsg Press ENTER to boot or TAB to edit a menu entry diff --git a/PepDev_arm64/peploadersplash/isolinux/txt.cfg b/PepDev_arm64/peploadersplash/isolinux/txt.cfg new file mode 100644 index 0000000..1f0dbc0 --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/txt.cfg @@ -0,0 +1,4 @@ +label install + menu label ^Install + kernel /install/vmlinuz + append vga=788 initrd=/install/initrd.gz --- quiet diff --git a/PepDev_arm64/peploadersplash/isolinux/vesamenu.c32 b/PepDev_arm64/peploadersplash/isolinux/vesamenu.c32 new file mode 100644 index 0000000..bbb65e0 Binary files /dev/null and b/PepDev_arm64/peploadersplash/isolinux/vesamenu.c32 differ diff --git a/PepDev_arm64/peploadersplash/isolinux/win32-loader.ini b/PepDev_arm64/peploadersplash/isolinux/win32-loader.ini new file mode 100644 index 0000000..cdb2f8d --- /dev/null +++ b/PepDev_arm64/peploadersplash/isolinux/win32-loader.ini @@ -0,0 +1,11 @@ +[installer] +kernel=linux +arch=amd64 +amd64/linux=install/vmlinuz +amd64/initrd=install/initrd.gz +amd64/gtk/linux=install/vmlinuz +amd64/gtk/initrd=install/initrd.gz + +[grub] +g2ldr=g2ldr +g2ldr.mbr=g2ldr.mbr diff --git a/PepDev_arm64/peprepo b/PepDev_arm64/peprepo new file mode 120000 index 0000000..f71af40 --- /dev/null +++ b/PepDev_arm64/peprepo @@ -0,0 +1 @@ +../peprepo \ No newline at end of file diff --git a/buildall.sh b/buildall.sh new file mode 100755 index 0000000..15f84df --- /dev/null +++ b/buildall.sh @@ -0,0 +1,8 @@ +#!/bin/bash +./PepDeb32.sh +./PepDeb64.sh +./PepDeb_arm64.sh +./PepDev32.sh +./PepDev64.sh +./PepDev_arm64.sh + diff --git a/pepinstaller/graphics/logo_debian.png b/pepinstaller/graphics/logo_debian.png old mode 100755 new mode 100644 index 23998a2..dbe8a50 Binary files a/pepinstaller/graphics/logo_debian.png and b/pepinstaller/graphics/logo_debian.png differ diff --git a/pepinstaller/graphics/logo_debian_dark.png b/pepinstaller/graphics/logo_debian_dark.png old mode 100755 new mode 100644 index 23998a2..dbe8a50 Binary files a/pepinstaller/graphics/logo_debian_dark.png and b/pepinstaller/graphics/logo_debian_dark.png differ diff --git a/pepinstaller/graphics/note_icon.png b/pepinstaller/graphics/note_icon.png index 2cc7282..6eabaef 100644 Binary files a/pepinstaller/graphics/note_icon.png and b/pepinstaller/graphics/note_icon.png differ diff --git a/pepinstaller/graphics/warning_icon.png b/pepinstaller/graphics/warning_icon.png index 8b7ca3b..a6a9e5c 100644 Binary files a/pepinstaller/graphics/warning_icon.png and b/pepinstaller/graphics/warning_icon.png differ diff --git a/pepinstaller/preseed/preseed.cfg b/pepinstaller/preseed/preseed.cfg index 11ed2ee..e0a2a44 100644 --- a/pepinstaller/preseed/preseed.cfg +++ b/pepinstaller/preseed/preseed.cfg @@ -11,6 +11,10 @@ d-i apt-setup/local0/source boolean true # URL to the public key of the local repository d-i apt-setup/local0/key string http://repo.peppermintos.com/packages/conf/peppermint-keyring.gpg +# You can choose to install non-free and contrib software. +d-i apt-setup/non-free boolean true +d-i apt-setup/contrib boolean true + # Remove popularity-contest popularity-contest popularity-contest/participate boolean false diff --git a/pepinstaller/themes/Clearlooks/gtk-2.0/gtkrc b/pepinstaller/themes/Clearlooks/gtk-2.0/gtkrc old mode 100644 new mode 100755 index bd74c60..0ab6ab9 --- a/pepinstaller/themes/Clearlooks/gtk-2.0/gtkrc +++ b/pepinstaller/themes/Clearlooks/gtk-2.0/gtkrc @@ -1,8 +1,7 @@ # Author: BSM -gtk_color_scheme = "fg_color:#D0D0D0\nbg_color:#444444\ntext_color:#d0d0d0\nbase_color:#262626\nselected_fg_color:#d0d0d0\nselected_bg_color:#222222\ntooltip_fg_color:#D0D0D0\ntooltip_bg_color:#363636"######### +gtk_color_scheme = "fg_color:#101010101010\nbg_color:#C0C0C0\ntext_color:#1a1a1a1a1a1a\nbase_color:#ffffffffffff\nselected_fg_color:#ffffff\nselected_bg_color:#F62817\ntooltip_fg_color:#000000000000\ntooltip_bg_color:#f1f1f1"######### gtk-icon-sizes = "gtk-large-toolbar=24,24:gtk-small-toolbar=16,16:gtk-button=24,24" # This enables "compact-mode". - gtk-button-images = 0 # Enables or disables icons on buttons (OS X-like). include "panel.rc" @@ -154,11 +153,7 @@ style "clearlooks-notebook" = "clearlooks-notebook-bg" style "clearlooks-menu" = "clearlooks-wider" { - bg[NORMAL] = shade(0.20,@bg_color) - bg[ACTIVE] = shade(0.25,@bg_color) - bg[PRELIGHT] = shade(0.4,@bg_color) - bg[SELECTED] = shade(0.60, @bg_color) - + bg[NORMAL] = shade (1.05, @bg_color) # Color of menu background. engine "clearlooks" { radius = 1.0 # Roundness of menu items. @@ -171,39 +166,27 @@ style "clearlooks-menu-item" = "clearlooks-wider" fg[PRELIGHT] = @selected_fg_color # Color of selected menu item text. bg[SELECTED] = shade (1.25, @selected_bg_color) # Color of menu items. bg[PRELIGHT] = shade (1.25, @selected_bg_color) # Color of menu items. - xthickness = 0 ythickness = 4 } style "clearlooks-separator-menu-item" { - fg[NORMAL] = "#D0D0D0" + bg[NORMAL] = "#ffffff" xthickness = 0 ythickness = 2 } style "clearlooks-menubar" { -# fg[NORMAL] = "#666666" xthickness = 1 - ythickness = 3 + ythickness = 0 engine "clearlooks" { hint = "menubar" } } -style "clearlooks-menubar-item" = "clearlooks-wider" -{ - -# fg[PRELIGHT] = @selected_fg_color # Color of selected menu item text. -# fg[NORMAL] = "#222222" - - xthickness = 0 - ythickness = 4 -} - style "clearlooks-treeview" { bg[SELECTED] = shade (1.25, @selected_bg_color) @@ -236,13 +219,14 @@ style "clearlooks-treeview-header" = "clearlooks-default" style "clearlooks-frame-title" { - #fg[NORMAL] = lighter (@fg_color) + fg[NORMAL] = lighter (@fg_color) } style "clearlooks-tooltips" = "clearlooks-wider" { - bg[NORMAL] = @tooltip_bg_color - fg[NORMAL] = @tooltip_fg_color + bg[NORMAL] = lighter(@tooltip_fg_color) + fg[NORMAL] = @tooltip_bg_color + } style "metacity-frame"# = "clearlooks-default" @@ -322,8 +306,8 @@ style "clearlooks-nautilus-location" # Workaround for nautilus' messages. } style "clearlooks-radiocheck" = "clearlooks-default" -{ - text[NORMAL] = "#D0D0D0" # Color for checks/radio items. +{ + text[NORMAL] = shade (0.8, @selected_bg_color) # Color for checks/radio items. # bg[SELECTED] = lighter (@selected_bg_color) # Color for prelight of check/radio buttons. } @@ -367,7 +351,7 @@ style "clearlooks-vscrollbar" = "clearlooks-scrollbar" style "clearlooks-toolbar" = "clearlooks-default" { - bg[NORMAL] = @bg_color + bg[NORMAL] = "#E1E1E1" #bg[NORMAL] = shade (0.965, @bg_color) # Darkens gradient toolbars to match with unified metacity theme. #engine "clearlooks" #{ @@ -387,7 +371,9 @@ style "clearlooks-evo-new-button-workaround" style "opera" { - bg[NORMAL] = "#3D3D3D" + #GtkToolbar ::shadow-type = GTK_SHADOW_NONE # Makes toolbars flat and unified. + bg[NORMAL] = "#CDCDCD" + #bg[ACTIVE] = "#cdcdcd" } widget_class "EShellWindow.GtkVBox.BonoboDock.BonoboDockBand.BonoboDockItem*" style "clearlooks-evo-new-button-workaround" @@ -437,11 +423,9 @@ widget_class "**" style "clearlooks-statusbar" widget_class "**" style "clearlooks-comboboxentry" widget_class "**" style "clearlooks-comboboxentry" +widget_class "**" style "clearlooks-menubar" widget_class "**" style "clearlooks-menu" widget_class "**" style "clearlooks-menu-item" -widget_class "**" style "clearlooks-menubar" -#widget_class "***" style "clearlooks-menubar-item" - widget_class "**" style "clearlooks-separator-menu-item" widget_class "*.." style "clearlooks-frame-title" @@ -521,7 +505,6 @@ widget_class "**" style "clearlooks-fg-is-text-color-workaround" widget_class "*" style "clearlooks-fg-is-text-color-workaround" widget_class "*" style "clearlooks-fg-is-text-color-workaround" -#widget "*GtkToolbar*" style "opera" #Enable this if you use Opera +#widget "*GtkToolbar*" style "opera" #Enable this if you use Opera # The answer to the ultimate question of life, the universe, and everything is 42. -