summaryrefslogtreecommitdiff
path: root/targets/lasse
blob: 9c43d56a0f88409f04cc4cb86926b9c1d3a5196c (plain)
  1. #!/bin/sh
  2. # Name and (if wanted) default IP address of system
  3. hostname="georg"
  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/GEORG"
  10. # Hosts used for several services like syslog and network filesystems
  11. diskhost="192.168.102.159"
  12. loghost="hysbald"
  13. dns_server="192.168.102.252"
  14. targettemp="$baseworkdir/tmproot"
  15. targettemp_fat="$baseworkdir/tmpfatroot"
  16. targettemp_isofs="$baseworkdir/tmpisoroot"
  17. targetoffline="$baseworkdir/flashybrid-off"
  18. # We have plenty of room, so use flashybrid only for ramstore
  19. #flashybrid_diskstore="
  20. #"
  21. # Set to one or more (space-delimited, max 4) of these:
  22. # SYSLINUX
  23. # ISOLINUX (not yet implemented)
  24. # GRUB (installs, but fails to load 2nd stage - please help! )
  25. # LILO (not yet implemented)
  26. # First one will be used by default (hit "a" at MBR promt to select)
  27. # FIXME: fdisk code unfinished: leave it as "SYSLINUX GRUB" for now!
  28. #bootloaders="SYSLINUX GRUB"
  29. bootloaders="GRUB"
  30. #bootloaders="SYSLINUX"
  31. # Uncomment one or more of these
  32. # (DFSBUILD, MKINITRD_CD and MKINITRD_NETBOOT not yet implemented)
  33. FLASHYBRID="yes"
  34. #DFSBUILD="yes"
  35. #MKINITRD_CD="yes"
  36. #MKINITRD_NETBOOT="yes"
  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://ftp.debian.org/debian/"
  58. aptsource_base_target="file:/pub/mirrors/debian/"
  59. aptsource_security_target="http://security.debian.org/"
  60. # Device name (or NFS share) to mount to "/pub" (if different from HOST)
  61. pubdev_target="$diskhost:/pub"
  62. # Define this to redirect all log output to another host
  63. loghost="$loghost"
  64. # Packages to install beyond the bare minimum
  65. aptitude_install="initramfs-tools"
  66. #aptitude_kernel_install="kernel-image-2.4-386"
  67. kernel_majorver="2.6"
  68. kernel_minorver="16"
  69. kernel_abi="2"
  70. kernel_subarch="486"
  71. #FIXME: Resolve name automagically
  72. kernel_name="${kernel_majorver}.${kernel_minorver}-${kernel_abi}-${kernel_subarch}"
  73. aptitude_kernel_install="linux-image-${kernel_majorver}-${kernel_subarch}"
  74. #This one needs to be installed separately from daemons
  75. #aptitude_install_custom="$aptitude_install_custom file-rc"
  76. aptsources="$aptsources jones"
  77. aptsource_jones_components="kernels boot voip mediastreaming"
  78. addons="boot net admin x11phonehome"
  79. aptitude_install_custom="pwc-modules-${kernel_name} spca5xx-modules-${kernel_name}"
  80. # Kernel modules to load at boot time
  81. modules_load="8139too"
  82. # Uncomment this to ease tracing configuration tweaks
  83. trace="yes"