diff options
author | jakub <jakub> | 1999-10-07 12:05:15 +0000 |
---|---|---|
committer | jakub <jakub> | 1999-10-07 12:05:15 +0000 |
commit | 304ea94c83c61bd380860b2d44ea20c26eb73de7 (patch) | |
tree | b38cb34f64fae8e0872cb3f3ac6be37d84f9df95 /isys/silo.c | |
parent | ed3d6df34c9e303e37249527de946c3fe974046b (diff) | |
download | anaconda-304ea94c83c61bd380860b2d44ea20c26eb73de7.tar.gz anaconda-304ea94c83c61bd380860b2d44ea20c26eb73de7.tar.xz anaconda-304ea94c83c61bd380860b2d44ea20c26eb73de7.zip |
cmd646 wants /disk@3,0 and not /disk@3
Diffstat (limited to 'isys/silo.c')
-rw-r--r-- | isys/silo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/silo.c b/isys/silo.c index cd3309f9d..4239f4ba9 100644 --- a/isys/silo.c +++ b/isys/silo.c @@ -267,7 +267,7 @@ scan_walk_callback(int node) { if (prop[0] == 'a') sprintf (prop, "/ata@%d,0/cmdk@%d,0", hd[disk].hi, hd[disk].lo); else - sprintf (prop, "/disk@%d", hd[disk].hi * 2 + hd[disk].lo); + sprintf (prop, "/disk@%d,0", hd[disk].hi * 2 + hd[disk].lo); break; case SDSK_TYPE_SD: for (nextnode = prom_getchild(node); nextnode; nextnode = prom_getsibling(nextnode)) { |