rdf2bin.1 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. .TH RDF2BIN 1 "September 6, 1999" "Debian Project" "Debian Manual"
  2. .SH NAME
  3. rdf2bin, rdf2com \- convert an RDOFF object file to flat binary
  4. .SH SYNOPSIS
  5. .B rdf2bin
  6. .RI "[\-o " relocation-origin ]
  7. .RI "[\-p " segment-alignment ]
  8. .RI "[\-f " format ]
  9. .I input-file
  10. .I output-file
  11. .br
  12. .B rdf2com
  13. .RI "[\-p " segment-alignment ]
  14. .I input-file
  15. .I output-file
  16. .br
  17. .B rdf2ith
  18. .RI "[\-o " relocation-origin ]
  19. .RI "[\-p " segment-alignment ]
  20. .I input-file
  21. .I output-file
  22. .br
  23. .B rdf2srec
  24. .RI "[\-o " relocation-origin ]
  25. .RI "[\-p " segment-alignment ]
  26. .I input-file
  27. .I output-file
  28. .SH OPTIONS
  29. .TP
  30. .RI "\-o " relocation-origin
  31. Relocate at origin
  32. .IR relocation-origin .
  33. If invoked as
  34. .BR rdf2com ,
  35. the default relocation origin will be 0x100. Else, the default origin is 0.
  36. .TP
  37. .RI "\-p " segment-alignment
  38. Pad segments until their size is a multiple of
  39. .IR segment-alignment .
  40. By default, 16 is used.
  41. .TP
  42. .RI "\-f " format
  43. Specify the output format. The currently supported formats are binary
  44. .RI ( bin ),
  45. DOS COM (binary with origin 0x100)
  46. .RI ( com )
  47. Intel hex
  48. .RI ( ith
  49. or
  50. .IR ihx ),
  51. and
  52. Motorola S-Records
  53. .RI ( srec ).
  54. If not specified, the format is set by the command name.
  55. .SH AUTHORS
  56. Julian Hall <jules@earthcorp.com>, H. Peter Anvin <hpa@zytor.com>.
  57. .PP
  58. This manual page was written by Matej Vela <vela@debian.org>.
  59. .SH BUGS
  60. This utility currently only supports the classic segments
  61. .IR .text ,
  62. .I .data
  63. and
  64. .IR .bss .