zefie@misaki:~/Samsung Moment/workdir$ adb shell
$ su
# system/bin/reboot download
This reboots to the samsung logo with no progress bar. connect it to pc with odin, and it is detected. start odin, screen switches to the more familar download screen and falshes no problem.
yay for another shortcut

You have way to much free time on your hands..
static int instinctq_notifier_call(struct notifier_block *this, unsigned long code, void *_cmd)
{
int mode = REBOOT_MODE_NONE;
if ((code == SYS_RESTART) && _cmd) {
if (!strcmp((char *)_cmd, "arm11_fota"))
mode = REBOOT_MODE_ARM11_FOTA;
else if (!strcmp((char *)_cmd, "arm9_fota"))
mode = REBOOT_MODE_ARM9_FOTA;
else if (!strcmp((char *)_cmd, "recovery"))
mode = REBOOT_MODE_RECOVERY;
else if (!strcmp((char *)_cmd, "download"))
mode = REBOOT_MODE_DOWNLOAD;
}
if (sec_set_param_value)
sec_set_param_value(__REBOOT_MODE, &mode);
return NOTIFY_DONE;
}