From: ceriel Date: Wed, 12 Aug 1987 20:51:23 +0000 (+0000) Subject: fixed X-Git-Tag: release-5-5~3903 X-Git-Url: https://git.ndcode.org/public/gitweb.cgi?a=commitdiff_plain;h=a0f89188b900835549087b43acf3fc65b22b1f7c;p=ack.git fixed --- diff --git a/mach/sun2/cv/cv.c b/mach/sun2/cv/cv.c index 5932a80aa..3c404d050 100644 --- a/mach/sun2/cv/cv.c +++ b/mach/sun2/cv/cv.c @@ -156,7 +156,7 @@ main(argc, argv) rom_in_data = 1; magic= NMAGIC ; textsize= outsect[TEXTSG].os_size ; - datasize= outsect[ROMSG].os_size + outsect[DATASG].os_size ; + datasize= outsect[BSSSG].os_base - outsect[ROMSG].os_base ; if (! follows(&outsect[DATASG], &outsect[ROMSG])) fatal("data segment must follow rom\n") ; } else @@ -164,7 +164,8 @@ main(argc, argv) /* 410/413 file with ROMSG in instruction space */ rom_in_data = 0; magic= NMAGIC ; - textsize= outsect[TEXTSG].os_size + outsect[ROMSG].os_size ; + textsize= (outsect[ROMSG].os_base - outsect[TEXTSG].os_base) + + outsect[ROMSG].os_size ; datasize= outsect[DATASG].os_size ; if (! follows(&outsect[ROMSG],&outsect[TEXTSG].os_base)) fatal("rom segment must follow text\n") ; @@ -172,7 +173,7 @@ main(argc, argv) /* Plain 407 file */ rom_in_data = 0; magic= OMAGIC ; - textsize= outsect[TEXTSG].os_size + outsect[ROMSG].os_size ; + textsize= (outsect[DATASG].os_base - outsect[TEXTSG].os_base); datasize= outsect[DATASG].os_size ; if (!unresolved) { if (! follows(&outsect[ROMSG],&outsect[TEXTSG])) diff --git a/mach/sun3/cv/cv.c b/mach/sun3/cv/cv.c index 5932a80aa..3c404d050 100644 --- a/mach/sun3/cv/cv.c +++ b/mach/sun3/cv/cv.c @@ -156,7 +156,7 @@ main(argc, argv) rom_in_data = 1; magic= NMAGIC ; textsize= outsect[TEXTSG].os_size ; - datasize= outsect[ROMSG].os_size + outsect[DATASG].os_size ; + datasize= outsect[BSSSG].os_base - outsect[ROMSG].os_base ; if (! follows(&outsect[DATASG], &outsect[ROMSG])) fatal("data segment must follow rom\n") ; } else @@ -164,7 +164,8 @@ main(argc, argv) /* 410/413 file with ROMSG in instruction space */ rom_in_data = 0; magic= NMAGIC ; - textsize= outsect[TEXTSG].os_size + outsect[ROMSG].os_size ; + textsize= (outsect[ROMSG].os_base - outsect[TEXTSG].os_base) + + outsect[ROMSG].os_size ; datasize= outsect[DATASG].os_size ; if (! follows(&outsect[ROMSG],&outsect[TEXTSG].os_base)) fatal("rom segment must follow text\n") ; @@ -172,7 +173,7 @@ main(argc, argv) /* Plain 407 file */ rom_in_data = 0; magic= OMAGIC ; - textsize= outsect[TEXTSG].os_size + outsect[ROMSG].os_size ; + textsize= (outsect[DATASG].os_base - outsect[TEXTSG].os_base); datasize= outsect[DATASG].os_size ; if (!unresolved) { if (! follows(&outsect[ROMSG],&outsect[TEXTSG]))