![]() |
2012-05-22
, 06:17
|
Posts: 135 |
Thanked: 158 times |
Joined on Sep 2009
@ Germany
|
#2
|
#!/bin/sh # mkdir /usr/share/policy/etc/FasterN9 mkdir /usr/share/policy/etc/noswap-backup cp -a /usr/share/policy/etc/noswap/* /usr/share/policy/etc/noswap-backup/ cp -a /usr/share/policy/etc/noswap/* /usr/share/policy/etc/FasterN9/ rm /usr/share/policy/etc/current rm /usr/share/policy/etc/FasterN9/syspart.conf ln -s /opt/FasterN9/config/syspart.conf /usr/share/policy/etc/FasterN9 ln -s /usr/share/policy/etc/FasterN9 /usr/share/policy/etc/current
#!/bin/sh # rm -rf /usr/share/policy/etc/FasterN9 rm /usr/share/policy/etc/current cp -a /usr/share/policy/etc/noswap-backup/* /usr/share/policy/etc/noswap/ ln -s /usr/share/policy/etc/noswap /usr/share/policy/etc/current
![]() |
2012-05-22
, 19:26
|
Posts: 143 |
Thanked: 205 times |
Joined on Apr 2008
|
#3
|
postinstall script:
Code:#!/bin/sh # mkdir /usr/share/policy/etc/FasterN9 cp -a /usr/share/policy/etc/noswap/* /usr/share/policy/etc/FasterN9/ rm /usr/share/policy/etc/current rm /usr/share/policy/etc/FasterN9/syspart.conf ln -s /opt/FasterN9/config/syspart.conf /usr/share/policy/etc/FasterN9 ln -s /usr/share/policy/etc/FasterN9 /usr/share/policy/etc/current
#!/bin/sh # rmdir -rf /usr/share/policy/etc/FasterN9 cp -a /usr/share/policy/etc/noswap /usr/share/policy/etc/FasterN9 ln -sf /opt/FasterN9/config/syspart.conf /usr/share/policy/etc/FasterN9/syspart.conf ln -sf /usr/share/policy/etc/FasterN9 /usr/share/policy/etc/current
postrm script:
Code:#!/bin/sh # rm -rf /usr/share/policy/etc/FasterN9 rm /usr/share/policy/etc/current ln -s /usr/share/policy/etc/noswap /usr/share/policy/etc/current
#!/bin/sh # ln -sf /usr/share/policy/etc/noswap /usr/share/policy/etc/current rm -rf /usr/share/policy/etc/FasterN9
![]() |
2012-05-22
, 20:13
|
Posts: 324 |
Thanked: 739 times |
Joined on Jun 2009
@ São Paulo, Brazil
|
#4
|
![]() |
2012-05-22
, 20:51
|
Posts: 1,313 |
Thanked: 2,978 times |
Joined on Jun 2011
@ Finland
|
#5
|
The original firmware has:
/usr/share/policy/etc/noswap (folder)
/usr/share/policy/etc/current (link to /usr/share/policy/etc/noswap)
/usr/share/policy/etc/noswap/syspart.conf (file)
#!/bin/sh # mkdir /usr/share/policy/etc/FasterN9 cp -a /usr/share/policy/etc/noswap/* /usr/share/policy/etc/FasterN9/ # Removing current should not be done here, as if something happens after removing but before rest of installation is finished, device might brick. # rm /usr/share/policy/etc/current rm /usr/share/policy/etc/FasterN9/syspart.conf ln -s /opt/FasterN9/config/syspart.conf /usr/share/policy/etc/FasterN9 # Here is the final link from current to FasterN9. The options instruct overwrite and treating the destination as file ln -nsf /usr/share/policy/etc/FasterN9 /usr/share/policy/etc/current
#!/bin/sh # # We can't remove FasterN9 before current points to correct entry # rm -rf /usr/share/policy/etc/FasterN9 # rm /usr/share/policy/etc/current ln -nsf /usr/share/policy/etc/noswap /usr/share/policy/etc/current # Now FasterN9 can be removed rm -rf /usr/share/policy/etc/FasterN9
I made this package (FasterN9) that basically installs a custom /usr/share/policy/etc/current/syspart.conf in the phone in order to make it less laggy. It works pretty fine, but that's not why I come to you.
The problem is that I read 2 reports from users that uninstalled it in order to update to the next version (not required but shouldn't hurt) and got "the device is malfunctioning". The package was downloaded 679 times now and lots of users did uninstalled it without getting that error, so I'm confused about what is the cause.
Nobody had this error after installing or during usage, only after uninstalling. I myself did installed and uninstalled some times before releasing in order to avoid this kind of problem and didn't got that. I think maybe somehow the changes the postrm script tried to do in the FS were still waiting in a kernel buffer when the phone rebooted and were lost. Is that possible? If so, just adding a sync to the script would fix it.
I'll paste here the postinstall and postrm scripts. Any comments or suggestions are welcome.
The original firmware has:
/usr/share/policy/etc/noswap (folder)
/usr/share/policy/etc/current (link to /usr/share/policy/etc/noswap)
/usr/share/policy/etc/noswap/syspart.conf (file)
FasterN9 package has:
/opt/FasterN9/config/syspart.conf (file)
postinstall script: