Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!/bin/sh
PATH=/usr/bin:/usr/sbin ; export PATH
#
# Change this to where your patches are located
#
cd /your/patchpath
#
# Reverse the order of the patch_order file
#
tail -r patch_order > remove_order
#
# Loop through and remove each patch listed
#
for PATCH in `cat reverse_order`
do
patchrm ${PATCH}
done
#
# Reboot
#
init 6
# END