PORTING
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:4k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. Porting FAQ for SING (Schily Is Not Gnu) utilities.
  2. - The base for porting is the makefile system.
  3. Always look into:
  4. ftp://ftp.fokus.gmd.de/pub/unix/makefiles
  5. for a version that might be newer than the one used
  6. inside the program that should be ported.
  7. If you want to know more about the makefile system,
  8. read the man pages makefiles4 and makerules.4,
  9. they are located in man/man4/*
  10. to convert a manpage troff->postscript use:
  11. gtroff -man file.tr | grops > file.ps
  12. to convert a manpage troff->Terminal use:
  13. nroff -man file.tr | more -s
  14. - To be able to use the makefile system, you need a
  15. make program that meets the minimum requirements 
  16. for a make program (see makerules(4) man page)
  17. Currently, the following make programs meet this
  18. minimum requirements: Smake (my program), SunPro Make and Gmake
  19. A good idea is to first compile 'smake' if you don't
  20. have it already.
  21. The smake source can be found on:
  22. ftp://fokus.gmd.de/pub/unix/smake/
  23. or
  24. ftp://fokus.gmd.de/pub/unix/smake/alpha
  25. for the most recent version.
  26. The most recent 'smake' binaries that I have created so far
  27. can be found in:
  28. ftp://fokus.gmd.de/pub/unix/makefiles/bin
  29. Note that these binaries must not necessarily be up to
  30. date compared to the latest source distribution.
  31. - To be able to use the makefile system with gmake,
  32. the operating system must have a command named 'uname'.
  33. If not, you have to provide it as a shell script.
  34. 1) If you are using smake release 1.1 or newer and 
  35. a recent makefile system, the next step should be done
  36. automagically (smake-1.1 or newer implement a -version
  37. option to retrieve the vesion number).
  38. If you are using gmake, you need to do this by hand.
  39. First step for adding a new architecture is creating
  40. the appropriate rule files in the RULES directory:
  41. RULES/os-{newos}.id For OS identification
  42. RULES/os-{newos}.def For OS definition (man style)
  43. RULES/{newarch}-{newos}-cc.rul
  44. RULES/{newarch}-{newos}-gcc.rul
  45. And create a file:
  46. DEFAULTS/Defaults.{newos}
  47. Have a look in similar files for a template.
  48. If the files hae been generated automagically by smake,
  49. please check the content and mail me a working set for your OS.
  50. 2) All C-porting control is located in include/mconfig.h
  51. and in the file incs/{newarch}-{newos}-{cc!gcc}/xconfig.h
  52. The later file is created automatically using GNU 
  53. configure. The File conf/xconfig.h.in contains all
  54. templates and comments for the various things that are tested.
  55. In any case, it is recommended to carefully watch the
  56. outout from the 'configure' run (which is automatically
  57. started from within 'make'). You may also wish to check all
  58. files that are created in the directory 
  59. incs/{newarch}-{newos}-{cc!gcc}/
  60. 3) Everything should compile now.
  61. If not, try to hack the files and mail me your problems.
  62. You should have a closer look at the sources as it may be that
  63. the first attempt to port a utility will not support
  64. all possible features of the new OS.
  65. If your OS supportes these features in a non standard way,
  66. you need to hack conf/configure.in and the source and add 
  67. support for the non standard behaviour of your OS.
  68. This is definitely recommended if you want to port programs 
  69. like 'cdrecord' 'star' and similar which need fork(2) and
  70. mmap(2) or setprioriry(2) or if you check programs on
  71. non POSIX operating systems like W95/W98/WNT OS/2 and
  72. similar.
  73. Notice for porting tools, that use the SCSI library libscg:
  74. I) Cdrecord should compile at this moment if you are using
  75. a new architecture. The SCSI transport however will not work.
  76. Check this!
  77. All files that contain low level code for SCSI transport are 
  78. located in the directory libscg/
  79. II) Implementing a SCSI Transport Layer for your architecture:
  80. You need to add a new block into scsihack.c that will add
  81. support for your OS. Copy the block:
  82. #ifdef  __NEW_ARCHITECTURE
  83. #define SCSI_IMPL               /* We have a SCSI implementation for XXX */
  84. /*
  85.  * Add new hacks here
  86.  */
  87. #include "scsi-new-arch.c"
  88. #endif
  89. and rename __NEW_ARCHITECTURE to reflect your new architecture.
  90. Add a new file that will be called scsi-{newarch}.c
  91. Have a look into scsi-linux-sg.c for a template how to do this.
  92. More hints for writing the needed SCSI low level transport functions
  93. is in:
  94. ftp://fokus.gmd.de/pub/unix/cdrecord/README.scsi-IF
  95. 4) Test your ported program.
  96. 5) You may check other programs from me to see if everything compiles
  97. and works.
  98. 6) Send me your changes
  99. Joerg Schilling
  100. schilling@fokus.gmd.de
  101. joerg@schily.isdn.cs.tu-berlin.de
  102. js@cs.tu-berlin.de