The first command sets the passkeys property and takes a url, and list of keys.
The second command stores the options to your rc file, overwriting if necessary.
:set passkeys+='https://www\.google\.com/reader':nplmsSt
:mkp!
:set passkeys+='https://www\.google\.com/reader':nplmsSt
:mkp!
/data/system/accounts.db/data/system/sync/accounts.xml
...
sqlite> select * from accounts;You can also clear the authtokens, grants, and extras tables of related entries. The following is an example of clearing the authtokens table with the accounts_ids from above.
1|News|com.htc.newsreader|
2|Weather|com.htc.sync.provider.weather|
3|Stocks|com.htc.android.Stock|
sqlite> delete from accounts where _id = 1;
sqlite> delete from accounts where _id = 3;
Exit from SQLite.sqlite> delete from authtokens where accounts_id in (1,3);
DCSStock.apk
DCSStock.odex
Stock.apk
Stock.odex
com.htc.StockWidget.apk
com.htc.StockWidget.odex
NewsReader.apk
NewsReader.odex
com.htc.NewsReaderWidget.apkcom.htc.NewsReaderWidget.odex
HtcFootprints.apkExit the ADB shell and click "reboot" on the phone.
HtcFootprints.odex
HtcFootprintsWidget.apk
HtcFootprintsWidget.odex
~/Desktop/hbloader-1.23 $ make m6811-elf-as -o hbtalker.elf hbtalker.s make: m6811-elf-as: Command not found make: *** [hbtalker.s19] Error 127I am on Ubuntu 8.10, and have installed the m68hc11 gcc compiler packages available in the Universe repository; which was done using the following command.
sudo aptitude install gcc-m68hc1x gdb-m68hc1x newlib-m68hc1xI noticed that the Ubuntu packages had slightly different names for the compiler. m68hc11-as versus m6811-elf-as which was used in the Makefile. New makefile is as follows.
all: SRecord.o S19Parser.o hbloader hbtalker.s19
SRecord.o: SRecord.hpp SRecord.cpp
g++ -c SRecord.cpp
S19Parser.o: S19Parser.hpp S19Parser.cpp
g++ -c S19Parser.cpp
hbloader: hbloader.cpp S19Parser.o SRecord.o
g++ -o hbloader hbloader.cpp S19Parser.o SRecord.o \
&& echo "Succesful build."
hbtalker.s19: hbtalker.s
m68hc11-as -o hbtalker.elf hbtalker.s
m68hc11-objcopy --only-section=.text --only-section=.rodata \
--only-section=.vectors --only-section=.data \
--output-target=srec hbtalker.elf hbtalker.s19 \
m68hc11-objcopy --only-section=.text --only-section=.rodata \
--only-section=.vectors --only-section=.data \
--output-target=binary hbtalker.elf hbtalker.b
clean:
rm -f *.o a.out *.core *.s19 *.elf *.o *.b *.rel *.lst hbloader