【BUG Fix】CM7 can't be installed with bootmenu CWM 3.0.2.8-- it's fixed

[email protected]

Senior Member
Feb 15, 2011
115
41
0
Linfen
it's fixed in the lastest code of Quarx at github

and the lastest version of CWM is updated to 3.1.0.0--- perfect


the lastest version of bootmenu is 0.8.3
and the version 0.8.0 within CM7 Beta6 has bugs.

and 0.8.3 can install zip of MIUI , but failed to CM7, the auothor of bootmenu



CM7: FAIL → for reasons of CM7 backuptool.sh (unmount command)

i fount how to fix it.
just remove the code "umount $S" of line 151 , it will be fine. see detail like this:


backuptool.sh:

Code:
....
S=/system
....
case "$1" in
backup)
mount $S # 
check_prereq;
if [ $PROCEED -ne 0 ];
then
rm -rf $C
mkdir -p $C
for file_list in get_files get_custom_files; do
$file_list | while read FILE REPLACEMENT; do
backup_file $S/$FILE
done
done
fi
umount -1 $S # ---------- [COLOR="Red"] just write this code like this (line 151[/COLOR])
;;
....
 
Last edited:
  • Like
Reactions: Quarx