* multempl/avrelf.em (PARSE_AND_LIST_ARGS_CASES): Add new value for
authorDenis Chertykov <denisc@overta.ru>
Sat, 5 May 2007 06:51:24 +0000 (06:51 +0000)
committerDenis Chertykov <denisc@overta.ru>
Sat, 5 May 2007 06:51:24 +0000 (06:51 +0000)
"--pmem-wrap-around".
(PARSE_AND_LIST_OPTIONS): Describe new value for "--pmem-wrap-around".

ld/ChangeLog
ld/emultempl/avrelf.em

index 7e8d30423c7738d9756bd1ec97772fe717c27200..68fdee1c6e50b3a2eac885af1b21c0ccc0532108 100644 (file)
@@ -1,3 +1,9 @@
+2007-05-05  Anatoly Sokolov <aesok@post.ru>
+
+       * multempl/avrelf.em (PARSE_AND_LIST_ARGS_CASES): Add new value for 
+       "--pmem-wrap-around".
+       (PARSE_AND_LIST_OPTIONS): Describe new value for "--pmem-wrap-around".
+
 2007-05-03  Bob Wilson  <bob.wilson@acm.org>
 
        * scripttempl/elfxtensa.sc: Merge changes from elf.sc.
index ba595e93094dc80cbc80175e0457bc17728acf56..1f5ab5cf507fa7d14e97395c53418d67a57fdbc0 100644 (file)
@@ -202,7 +202,7 @@ PARSE_AND_LIST_OPTIONS='
                    "                              "
                            "program counter wrap-around occures at address\n"
                    "                              "
-                           "<val>. Supported values are 16k, 32k and 64k.\n"));
+                           "<val>. Supported values are 8k, 16k, 32k and 64k.\n"));
   fprintf (file, _("     --no-call-ret-replacement "
                            "The relaxation machine normally will\n"
                    "                               "
@@ -230,6 +230,8 @@ PARSE_AND_LIST_ARGS_CASES='
         /* This variable is defined in the bfd library.  */
         if ((!strcmp (optarg,"32k"))      || (!strcmp (optarg,"32K")))
           avr_pc_wrap_around = 32768;
+        else if ((!strcmp (optarg,"8k")) || (!strcmp (optarg,"8K")))
+          avr_pc_wrap_around = 8192;
         else if ((!strcmp (optarg,"16k")) || (!strcmp (optarg,"16K")))
           avr_pc_wrap_around = 16384;
         else if ((!strcmp (optarg,"64k")) || (!strcmp (optarg,"64K")))