Thanks to protected area of onboard Flash Memory (MMC) and to nvflash protocol, it's virtually impossible to brick your AC100. Whatever you do, you would be able to restore it to its initial state providing that:
If you don't know how to do it, it's not that killer, you could always find someone who knows lurking around on the #ac100 IRC channel.
If you don't have backups, there is little we can help to restore a dead AC100. Well, people have their own backups, but:
First install nvflash on your PC.
Your AC100 MMC contains several partitions. The manual way to backup them are:
$ nvflash --bl /usr/lib/nvflash/fastboot.bin --sync
Note: fastboot.bin might be in a different location depending on your local installation of nvflash
$ nvflash -r --getpartitiontable partitiontable.txt
more partitiontable.txt
$ for i in $(seq -w 2 14); do nvflash -r --read $i part$i.img; done
Note: There is no partition 1 and the backups have the full size of the real partitions (make sure you have enough disk space).
dd if=part02.img of=ac100.bct bs=4080 count=1
You will need this later in case you need to do a full restore of your AC100.
$ for i in $(seq -w 2 14); do tar cfvz part$i.tar.gz part$i.img; rm part$i.img; done
$ dos2unix partitiontable.txt $ ./parttable_to_cfg partitiontable.txt > ac100.cfg
Troubleshooting: If it seems like the nvflash program does not response anymore, or a nvflash error messages appear, you might have to reconnect. Simply turn of the AC100 (long-press power button). You should again receive a prompt from the console. Repeat step 2 and 3 and continue.
TODO
nvflash --bl /usr/lib/nvflash/fastboot.bin --sync
nvflash -r --download <num> part<num>.img
The Partition Layout might also be interesting to look at.