mirror of the now-defunct rocklinux.org
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.

32 lines
513 B

  1. {
  2. cat <<- 'EOT'
  3. define(`MIPS', `MIPS')dnl
  4. CONFIG_MIPS=y
  5. EOT
  6. if [ "$ROCKCFG_MIPS_ABI" = "32" ] ; then
  7. cat <<- 'EOT'
  8. CONFIG_MIPS32=y
  9. EOT
  10. else
  11. cat <<- 'EOT'
  12. CONFIG_MIPS64=y
  13. EOT
  14. fi
  15. if [ "$ROCKCFG_MIPS_ENDIANESS" = "EL" ] ; then
  16. cat <<- 'EOT'
  17. CONFIG_CPU_LITTLE_ENDIAN=y
  18. EOT
  19. fi
  20. cat <<- 'EOT'
  21. include(`kernel-common.conf')
  22. include(`kernel-scsi.conf')
  23. include(`kernel-net.conf')
  24. include(`kernel-fs.conf')
  25. EOT
  26. } | m4 -I $base/architecture/$arch -I $base/architecture/share