summaryrefslogtreecommitdiff
path: root/targets/jones
blob: 687a120d2e892863fe2c890b234c11fbb6946b83 (plain)
  1. #!/bin/sh
  2. # Name and (if wanted) default IP address of system
  3. hostname="perilin"
  4. domainname="jones.dk"
  5. #hostdefaultip="192.168.133.133"
  6. suite="sid"
  7. # Suppress non-existing sid security updates
  8. aptsources="base"
  9. baseworkdir="/home/PERILIN"
  10. # Hosts used for several services like syslog and network filesystems
  11. diskhost="hykrion"
  12. loghost="hysbald"
  13. dns_server="192.168.222.252"
  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. # Uncomment one or more of these
  28. # (DFSBUILD, MKINITRD_CD and MKINITRD_NETBOOT not yet implemented)
  29. FLASHYBRID="yes"
  30. #DFSBUILD="yes"
  31. #MKINITRD_CD="yes"
  32. #MKINITRD_NETBOOT="yes"
  33. # Set this empty to avoid dhcp client altogether
  34. DHCPCLIENT="dhcp3"
  35. #DHCPCLIENT="udhcpc"
  36. # Set to one of the following:
  37. # ext2 (recommended!)
  38. # ext3
  39. # isofs (not yet supported)
  40. ROOTFS="ext2"
  41. # Set to prioritized list of filesystems you want used on the stick
  42. # (USB sticks have limited write count: avoid journalling filesystems)
  43. # (SYSLINUX use only 8.3 filenames, so msdos might be better than vfat)
  44. selectable_filesystems="ext2 vfat"
  45. # If enabled, this will get get attached to /disk (needed by FLASHYBRID)
  46. diskdev_host="${diskhost:+$diskhost:$baseworkdir/flashybrid-off}"
  47. diskdev_target="$diskdev_host"
  48. diskfs="nfs"
  49. # Ordered list of all APT sources (if different from DEFAULT and HOST)
  50. #aptsources="base security jones"
  51. # URI and components of base APT repository as seen on target (if different from host setup)
  52. # (remember to enable nfs if using "file:/pub/...")
  53. #aptsource_base_target="http://ftp.debian.org/debian/"
  54. aptsource_base_target="file:/pub/mirrors/debian/"
  55. aptsource_security_target="http://security.debian.org/"
  56. # Device name (or NFS share) to mount to "/pub" (if different from HOST)
  57. pubdev_target="$diskhost:/pub"
  58. # Define this to redirect all log output to another host
  59. loghost="$loghost"
  60. # Packages to install beyond the bare minimum
  61. aptitude_install="initramfs-tools"
  62. #aptitude_kernel_install="kernel-image-2.4-386"
  63. kernel_majorver="2.6"
  64. kernel_minorver="16"
  65. kernel_abi="2"
  66. kernel_subarch="486"
  67. #FIXME: Resolve name automagically
  68. kernel_name="${kernel_majorver}.${kernel_minorver}-${kernel_abi}-${kernel_subarch}"
  69. aptitude_kernel_install="linux-image-${kernel_majorver}-${kernel_subarch}"
  70. #This one needs to be installed separately from daemons
  71. #aptitude_install_custom="$aptitude_install_custom file-rc"
  72. aptsources="$aptsources jones"
  73. aptsource_jones_components="kernels boot voip mediastreaming"
  74. addons="boot net admin acpi disk"
  75. # We want from a booted stick to be able to generate a yaird initrd for booting on firewire
  76. aptitude_install_custom="yaird"
  77. # Kernel modules to load at boot time
  78. modules_load="via-rhine"
  79. # Uncomment this to ease tracing configuration tweaks
  80. trace="yes"