From fed0ad76941e8021ba1a7d88f7a8ca9d89c99016 Mon Sep 17 00:00:00 2001 From: Kay Sievers Date: Sun, 28 Jun 2009 02:58:12 +0200 Subject: ata_id: sync ID_SERIAL(_SHORT) with other *_id tools ID_SERIAL is the full serial number used for the links, ID_SERIAL_SHORT is the device serial number. --- extras/ata_id/ata_id.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'extras/ata_id/ata_id.c') diff --git a/extras/ata_id/ata_id.c b/extras/ata_id/ata_id.c index d976467817..9644a45b19 100644 --- a/extras/ata_id/ata_id.c +++ b/extras/ata_id/ata_id.c @@ -149,11 +149,12 @@ int main(int argc, char *argv[]) } else { printf("ID_TYPE=disk\n"); } + printf("ID_BUS=ata\n"); printf("ID_MODEL=%s\n", model); printf("ID_MODEL_ENC=%s\n", model_enc); - printf("ID_SERIAL=%s\n", serial); printf("ID_REVISION=%s\n", revision); - printf("ID_BUS=ata\n"); + printf("ID_SERIAL=%s_%s\n", model, serial); + printf("ID_SERIAL_SHORT=%s\n", serial); } else { if (serial[0] != '\0') printf("%s_%s\n", model, serial); -- cgit v1.2.3-54-g00ecf