build.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:5k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  $Id: build.c,v 1.3 2001/06/26 15:14:50 pavel Exp $
  3.  *
  4.  *  Copyright (C) 1991, 1992  Linus Torvalds
  5.  *  Copyright (C) 1997 Martin Mares
  6.  */
  7. /*
  8.  * This file builds a disk-image from three different files:
  9.  *
  10.  * - bootsect: exactly 512 bytes of 8086 machine code, loads the rest
  11.  * - setup: 8086 machine code, sets up system parm
  12.  * - system: 80386 code for actual system
  13.  *
  14.  * It does some checking that all files are of the correct type, and
  15.  * just writes the result to stdout, removing headers and padding to
  16.  * the right amount. It also writes some system data to stderr.
  17.  */
  18. /*
  19.  * Changes by tytso to allow root device specification
  20.  * High loaded stuff by Hans Lermen & Werner Almesberger, Feb. 1996
  21.  * Cross compiling fixes by Gertjan van Wingerde, July 1996
  22.  * Rewritten by Martin Mares, April 1997
  23.  */
  24. #include <stdio.h>
  25. #include <string.h>
  26. #include <stdlib.h>
  27. #include <stdarg.h>
  28. #include <sys/types.h>
  29. #include <sys/stat.h>
  30. #include <sys/sysmacros.h>
  31. #include <unistd.h>
  32. #include <fcntl.h>
  33. #include <asm/boot.h>
  34. typedef unsigned char byte;
  35. typedef unsigned short word;
  36. typedef unsigned long u32;
  37. #define DEFAULT_MAJOR_ROOT 0
  38. #define DEFAULT_MINOR_ROOT 0
  39. /* Minimal number of setup sectors (see also bootsect.S) */
  40. #define SETUP_SECTS 4
  41. byte buf[1024];
  42. int fd;
  43. int is_big_kernel;
  44. void die(const char * str, ...)
  45. {
  46. va_list args;
  47. va_start(args, str);
  48. vfprintf(stderr, str, args);
  49. fputc('n', stderr);
  50. exit(1);
  51. }
  52. void file_open(const char *name)
  53. {
  54. if ((fd = open(name, O_RDONLY, 0)) < 0)
  55. die("Unable to open `%s': %m", name);
  56. }
  57. void usage(void)
  58. {
  59. die("Usage: build [-b] bootsect setup system [rootdev] [> image]");
  60. }
  61. int main(int argc, char ** argv)
  62. {
  63. unsigned int i, c, sz, setup_sectors;
  64. u32 sys_size;
  65. byte major_root, minor_root;
  66. struct stat sb;
  67. if (argc > 2 && !strcmp(argv[1], "-b"))
  68.   {
  69.     is_big_kernel = 1;
  70.     argc--, argv++;
  71.   }
  72. if ((argc < 4) || (argc > 5))
  73. usage();
  74. if (argc > 4) {
  75. if (!strcmp(argv[4], "CURRENT")) {
  76. if (stat("/", &sb)) {
  77. perror("/");
  78. die("Couldn't stat /");
  79. }
  80. major_root = major(sb.st_dev);
  81. minor_root = minor(sb.st_dev);
  82. } else if (strcmp(argv[4], "FLOPPY")) {
  83. if (stat(argv[4], &sb)) {
  84. perror(argv[4]);
  85. die("Couldn't stat root device.");
  86. }
  87. major_root = major(sb.st_rdev);
  88. minor_root = minor(sb.st_rdev);
  89. } else {
  90. major_root = 0;
  91. minor_root = 0;
  92. }
  93. } else {
  94. major_root = DEFAULT_MAJOR_ROOT;
  95. minor_root = DEFAULT_MINOR_ROOT;
  96. }
  97. fprintf(stderr, "Root device is (%d, %d)n", major_root, minor_root);
  98. file_open(argv[1]);
  99. i = read(fd, buf, sizeof(buf));
  100. fprintf(stderr,"Boot sector %d bytes.n",i);
  101. if (i != 512)
  102. die("Boot block must be exactly 512 bytes");
  103. if (buf[510] != 0x55 || buf[511] != 0xaa)
  104. die("Boot block hasn't got boot flag (0xAA55)");
  105. buf[508] = minor_root;
  106. buf[509] = major_root;
  107. if (write(1, buf, 512) != 512)
  108. die("Write call failed");
  109. close (fd);
  110. file_open(argv[2]);     /* Copy the setup code */
  111. for (i=0 ; (c=read(fd, buf, sizeof(buf)))>0 ; i+=c )
  112. if (write(1, buf, c) != c)
  113. die("Write call failed");
  114. if (c != 0)
  115. die("read-error on `setup'");
  116. close (fd);
  117. setup_sectors = (i + 511) / 512; /* Pad unused space with zeros */
  118. /* for compatibility with ancient versions of LILO. */
  119. if (setup_sectors < SETUP_SECTS)
  120. setup_sectors = SETUP_SECTS;
  121. fprintf(stderr, "Setup is %d bytes.n", i);
  122. memset(buf, 0, sizeof(buf));
  123. while (i < setup_sectors * 512) {
  124. c = setup_sectors * 512 - i;
  125. if (c > sizeof(buf))
  126. c = sizeof(buf);
  127. if (write(1, buf, c) != c)
  128. die("Write call failed");
  129. i += c;
  130. }
  131. file_open(argv[3]);
  132. if (fstat (fd, &sb))
  133. die("Unable to stat `%s': %m", argv[3]);
  134. sz = sb.st_size;
  135. fprintf (stderr, "System is %d kBn", sz/1024);
  136. sys_size = (sz + 15) / 16;
  137. /* 0x28000*16 = 2.5 MB, conservative estimate for the current maximum */
  138. if (sys_size > (is_big_kernel ? 0x28000 : DEF_SYSSIZE))
  139. die("System is too big. Try using %smodules.",
  140. is_big_kernel ? "" : "bzImage or ");
  141. if (sys_size > 0xefff)
  142. fprintf(stderr,"warning: kernel is too big for standalone boot "
  143.     "from floppyn");
  144. while (sz > 0) {
  145. int l, n;
  146. l = (sz > sizeof(buf)) ? sizeof(buf) : sz;
  147. if ((n=read(fd, buf, l)) != l) {
  148. if (n < 0)
  149. die("Error reading %s: %m", argv[3]);
  150. else
  151. die("%s: Unexpected EOF", argv[3]);
  152. }
  153. if (write(1, buf, l) != l)
  154. die("Write failed");
  155. sz -= l;
  156. }
  157. close(fd);
  158. if (lseek(1, 497, SEEK_SET) != 497)     /* Write sizes to the bootsector */
  159. die("Output: seek failed");
  160. buf[0] = setup_sectors;
  161. if (write(1, buf, 1) != 1)
  162. die("Write of setup sector count failed");
  163. if (lseek(1, 500, SEEK_SET) != 500)
  164. die("Output: seek failed");
  165. buf[0] = (sys_size & 0xff);
  166. buf[1] = ((sys_size >> 8) & 0xff);
  167. if (write(1, buf, 2) != 2)
  168. die("Write of image length failed");
  169. return 0;     /* Everything is OK */
  170. }