My guess is that the Kobo doesn't honour the Display sequence. Try swapping the two dc:creator elements in the opf file, e.g. from this:
Code:
<dc:creator opf:role="trl" opf:file-as="Death, Sarah">Sarah Death</dc:creator>
<dc:creator opf:role="aut" opf:file-as="Smirnoff, Karin">Karin Smirnoff</dc:creator>
To this:
Code:
<dc:creator opf:role="aut" opf:file-as="Smirnoff, Karin">Karin Smirnoff</dc:creator>
<dc:creator opf:role="trl" opf:file-as="Death, Sarah">Sarah Death</dc:creator>
BR