Currently, 0xa000-0xbfff is an unused page in flash. You can open /dev/empegflash0a000 (or something similar, I can't remember the exact filename at the moment) and write to this.

Open it with O_SYNC as one of the open() options, and do a sync() after closing it to ensure the data has been written back to flash.

Hugo