summaryrefslogtreecommitdiff
path: root/targets/homebase
blob: d9414d843bcd7e17b381261ecb62311f5fb83457 (plain)
  1. #!/bin/sh
  2. # Name and (if wanted) default IP address of system
  3. hostname="tomos"
  4. domainname="homebase.dk"
  5. #hostdefaultip="192.168.133.133"
  6. suite="etch"
  7. # Suppress non-existing sid security updates
  8. aptsources="base"
  9. baseworkdir="/home/TOMOS"
  10. # Hosts used for several services like syslog and network filesystems
  11. diskhost=""
  12. loghost="log"
  13. dns_server="192.168.1.2"
  14. targettemp="$baseworkdir/tmproot"
  15. targettemp_fat="$baseworkdir/tmpfatroot"
  16. targettemp_isofs="$baseworkdir/tmpisoroot"
  17. targetoffline="$baseworkdir/flashybrid-off"
  18. # Set to one or more (space-delimited, max 4) of these:
  19. # SYSLINUX
  20. # ISOLINUX (not yet implemented)
  21. # GRUB (installs, but fails to load 2nd stage - please help! )
  22. # LILO (not yet implemented)
  23. # First one will be used by default (hit "a" at MBR promt to select)
  24. # FIXME: fdisk code unfinished: leave it as "SYSLINUX GRUB" for now!
  25. #bootloaders="SYSLINUX GRUB"
  26. bootloaders="GRUB"
  27. #bootloaders="SYSLINUX"
  28. # Uncomment one or more of these
  29. # (DFSBUILD, MKINITRD_CD and MKINITRD_NETBOOT not yet implemented)
  30. FLASHYBRID="yes"
  31. #DFSBUILD="yes"
  32. #MKINITRD_CD="yes"
  33. #MKINITRD_NETBOOT="yes"
  34. # Keep all stored files locally, even when using flashybrid
  35. # (We have plenty of room, so use flashybrid only for ramstore)
  36. flashybrid_diskstore=""
  37. # Set this empty to avoid dhcp client altogether
  38. DHCPCLIENT="dhcp3"
  39. #DHCPCLIENT="udhcpc"
  40. # Set to one of the following:
  41. # ext2 (recommended!)
  42. # ext3
  43. # isofs (not yet supported)
  44. ROOTFS="ext2"
  45. # Set to prioritized list of filesystems you want used on the stick
  46. # (USB sticks have limited write count: avoid journalling filesystems)
  47. # (SYSLINUX use only 8.3 filenames, so msdos might be better than vfat)
  48. selectable_filesystems="ext2 vfat"
  49. # If enabled, this will get get attached to /disk (needed by FLASHYBRID)
  50. diskdev_host="${diskhost:+$diskhost:$baseworkdir/flashybrid-off}"
  51. diskdev_target="$diskdev_host"
  52. diskfs="nfs"
  53. # Ordered list of all APT sources (if different from DEFAULT and HOST)
  54. #aptsources="base security jones"
  55. # URI and components of base APT repository as seen on target (if different from host setup)
  56. # (remember to enable nfs if using "file:/pub/...")
  57. aptsource_base_target="http://proxy:9999/"
  58. aptsource_security_target="http://proxy:9999/security"
  59. # Device name (or NFS share) to mount to "/pub" (if different from HOST)
  60. #pubdev_target="$diskhost:/pub"
  61. # Define this to redirect all log output to another host
  62. loghost="$loghost"
  63. # Packages to install beyond the bare minimum
  64. aptitude_install="initramfs-tools"
  65. #aptitude_kernel_install="kernel-image-2.4-386"
  66. kernel_majorver="2.6"
  67. kernel_minorver="16"
  68. kernel_abi="2"
  69. kernel_subarch="486"
  70. #FIXME: Resolve name automagically
  71. kernel_name="${kernel_majorver}.${kernel_minorver}-${kernel_abi}-${kernel_subarch}"
  72. aptitude_kernel_install="linux-image-${kernel_majorver}-${kernel_subarch}"
  73. #This one needs to be installed separately from daemons
  74. #aptitude_install_custom="$aptitude_install_custom file-rc"
  75. aptsources="$aptsources jones"
  76. aptsource_jones_components="kernels boot voip mediastreaming"
  77. addons="boot net admin acpi disk"
  78. # We want from a booted stick to be able to generate a yaird initrd for booting on firewire
  79. aptitude_install_custom="yaird"
  80. # Kernel modules to load at boot time
  81. modules_load="8139too"
  82. # Uncomment this to ease tracing configuration tweaks
  83. trace="yes"