OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
1.5 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../dietlibc/a.out.h.patch
  5. # Copyright (C) 2006 The T2 SDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. Needed for util-linux/more, huh?
  17. - Rene Rebe <rene@exactcode.de>
  18. --- ./include/a.out.h 2005-12-29 16:21:21.231999000 +0000
  19. +++ ./include/a.out.h 2006-01-01 10:38:32.000000000 +0000
  20. @@ -0,0 +1,27 @@
  21. +#ifndef __A_OUT_GNU_H__
  22. +#define __A_OUT_GNU_H__
  23. +
  24. +enum machine_type
  25. +{
  26. + M_OLDSUN2 = 0,
  27. + M_68010 = 1,
  28. + M_68020 = 2,
  29. + M_SPARC = 3,
  30. + M_386 = 100,
  31. + M_MIPS1 = 151,
  32. + M_MIPS2 = 152
  33. +};
  34. +
  35. +/* Code indicating object file or impure executable. */
  36. +#define OMAGIC 0407
  37. +/* Code indicating pure executable. */
  38. +#define NMAGIC 0410
  39. +/* Code indicating demand-paged executable. */
  40. +#define ZMAGIC 0413
  41. +/* This indicates a demand-paged executable with the header in the text.
  42. + The first page is unmapped to help trap NULL pointer references. */
  43. +#define QMAGIC 0314
  44. +/* Code indicating core file. */
  45. +#define CMAGIC 0421
  46. +
  47. +#endif /* __A_OUT_GNU_H__ */