Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
randompersononinternet69 committed Sep 21, 2024
1 parent f65ffa8 commit fde0d78
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 5 deletions.
2 changes: 1 addition & 1 deletion boot/grubfm/distro/andmenu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [ "${android_install}" = " " ]; then
}
else
menuentry "[+] Install Android" --class settings{
export android_install=;
export android_install=" ";
configfile ${prefix}/distro/andmenu.sh;
}
fi;
Expand Down
2 changes: 1 addition & 1 deletion boot/grubfm/distro/android.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export vmlinuz_img="(loop)/kernel";
export initrd_img="(loop)/initrd.img";
export android_selinux="androidboot.selinux=permissive";
export android_selinux="";
export android_hardware=" ";
export android="(loop)"
configfile ${prefix}/distro/andmenu.sh;
3 changes: 2 additions & 1 deletion boot/grubfm/global.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ then
fi;

hiddenentry " " --hotkey f1 {
configfile ${prefix}/hwinfo.sh;
echo "Sorry, this crashes GRUB2 - do NOT run - check pinned issue in repo!"
sleep 5
}

hiddenentry " " --hotkey f2 {
Expand Down
9 changes: 9 additions & 0 deletions boot/grubfm/init.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,15 @@

echo Starting G2FM beta...
set color_normal=yellow/black
if cpuid -l;
then
export CPU=64;
else
export CPU=32;
fi
stat -r -q -s RAM;
export RAM;

echo " "
# The following code is from agFM for Easy2Boot
echo " "
Expand Down
2 changes: 1 addition & 1 deletion boot/grubfm/ver
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3c17590f-a0f8-4fbc-878a-15a49c50c7a3
b32a73ae-09f1-4784-bc51-2fb5a0fe74bd
2 changes: 1 addition & 1 deletion release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ do
echo "Starting build with value: ${i}"
echo "${i}" | ./build.sh
echo "Copying files"
cp grubfm.iso g2fm_multiarch.iso loadfm samples/
cp grubfm.iso loadfm samples/
cp grubfm*.efi g2fm*.efi samples/
echo "Creating 7z file"
cd samples
Expand Down

0 comments on commit fde0d78

Please sign in to comment.