I ran the following command to apply a patch, and in the first attempt, it spitted a couple of errors saying patch apply failed for these files, and after making changes to those files, I ran the command again to see a whole lot of other errors.
git apply --ignore-space-change --ignore-whitespace patch-file
But I checked a few files and it looks like the patch was correctly applied, but why the errors? The following .rej and the source file doesn't help me debug the cause
// c.rej
fi
fi
- if [ "$qcrild_status" = "true" ]; then
+ multisim=`getprop persist.radio.multisim.config`
+
+ if [ "$multisim" = "dsds" ]; then
# Make sure both rild, qcrild are not running at same time.
# This is possible with vanilla aosp system image.
stop ril-daemon
// .c
fi
fi
multisim=`getprop persist.radio.multisim.config`
if [ "$multisim" = "dsds" ]; then
# Make sure both rild, qcrild are not running at same time.
# This is possible with vanilla aosp system image.
stop ril-daemon