3
0

randomtest 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. #!/bin/sh
  2. # If not specified in environment...
  3. if ! test "$LIBC"; then
  4. # Select which libc to build against
  5. LIBC="glibc"
  6. LIBC="uclibc"
  7. fi
  8. # x86 32-bit:
  9. #CROSS_COMPILER_PREFIX="i486-linux-uclibc-"
  10. # My system has strange prefix for x86 64-bit uclibc:
  11. #CROSS_COMPILER_PREFIX="x86_64-pc-linux-gnu-"
  12. if test $# -lt 2 || ! test -d "$1" || test -e "$2"; then
  13. echo "Usage: $0 SRC_DIR TMP_DIR"
  14. echo
  15. echo "SRC_DIR will be copied to TMP_DIR directory."
  16. echo "Then a random build will be performed."
  17. echo
  18. echo "Useful variables:"
  19. echo "\$LIBC, \$CROSS_COMPILER_PREFIX, \$MAKEOPTS"
  20. exit 1
  21. fi
  22. cp -dpr -- "$1" "$2" || { echo "copy error"; exit 1; }
  23. cd -- "$2" || { echo "cd $dir error"; exit 1; }
  24. # Generate random config
  25. make randconfig >/dev/null || { echo "randconfig error"; exit 1; }
  26. # Tweak resulting config
  27. cat .config \
  28. | grep -v CONFIG_DEBUG_PESSIMIZE \
  29. | grep -v CONFIG_WERROR \
  30. | grep -v CONFIG_CROSS_COMPILER_PREFIX \
  31. | grep -v CONFIG_SELINUX \
  32. | grep -v CONFIG_EFENCE \
  33. | grep -v CONFIG_DMALLOC \
  34. \
  35. | grep -v CONFIG_RFKILL \
  36. >.config.new
  37. mv .config.new .config
  38. echo '# CONFIG_DEBUG_PESSIMIZE is not set' >>.config
  39. echo '# CONFIG_WERROR is not set' >>.config
  40. echo "CONFIG_CROSS_COMPILER_PREFIX=\"${CROSS_COMPILER_PREFIX}\"" >>.config
  41. echo '# CONFIG_SELINUX is not set' >>.config
  42. echo '# CONFIG_EFENCE is not set' >>.config
  43. echo '# CONFIG_DMALLOC is not set' >>.config
  44. echo '# CONFIG_RFKILL is not set' >>.config
  45. # If glibc, don't build static
  46. if test x"$LIBC" = x"glibc"; then
  47. cat .config \
  48. | grep -v CONFIG_STATIC \
  49. >.config.new
  50. mv .config.new .config
  51. echo '# CONFIG_STATIC is not set' >>.config
  52. fi
  53. # If uclibc, build static, and remove some things
  54. # likely to not work on uclibc.
  55. if test x"$LIBC" = x"uclibc"; then
  56. cat .config \
  57. | grep -v CONFIG_STATIC \
  58. | grep -v CONFIG_BUILD_LIBBUSYBOX \
  59. | grep -v CONFIG_PIE \
  60. \
  61. | grep -v CONFIG_FEATURE_TOUCH_NODEREF \
  62. | grep -v CONFIG_FEATURE_2_4_MODULES \
  63. >.config.new
  64. mv .config.new .config
  65. echo 'CONFIG_STATIC=y' >>.config
  66. echo '# CONFIG_BUILD_LIBBUSYBOX is not set' >>.config
  67. echo '# CONFIG_PIE is not set' >>.config
  68. echo '# CONFIG_FEATURE_2_4_MODULES is not set' >>.config
  69. echo '# CONFIG_FEATURE_TOUCH_NODEREF is not set' >>.config
  70. fi
  71. # If STATIC, remove some things.
  72. # PAM with static linking is probably pointless
  73. # (but I need to try - now I don't have libpam.a on my system, only libpam.so)
  74. if grep -q "^CONFIG_STATIC=y" .config; then
  75. cat .config \
  76. | grep -v CONFIG_PAM \
  77. >.config.new
  78. mv .config.new .config
  79. echo '# CONFIG_PAM is not set' >>.config
  80. fi
  81. # Regenerate .config with default answers for yanked-off options
  82. # (most of default answers are "no").
  83. { yes "" | make oldconfig >/dev/null; } || { echo "oldconfig error"; exit 1; }
  84. # Build!
  85. nice -n 10 make $MAKEOPTS 2>&1 | tee make.log
  86. # Return exitcode 1 if busybox executable does not exist
  87. test -x busybox