Advertisement
Guest User

Untitled

a guest
Sep 16th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.39 KB | None | 0 0
  1. ################################################
  2. ### --- Thinstation Build Config --- ###
  3. ################################################
  4. #
  5. #
  6. # This is Thinstation s basic setup file. In this file you decide which
  7. # hardware, programs and features to be included in the Thinstation
  8. # boot image generated by running "./build".
  9. #
  10. # You can customize/limit the possibilities in the thinstation.conf
  11. # files later.
  12. #
  13. # Anything after a "#" is a comment. You activate "things" by removing
  14. # the "#" and remove "things" by putting a "#" in front of them.
  15. #
  16. # First we define which modules to include. Modules are hardware
  17. # drivers. NEVER include more than necessary - the more modules, the
  18. # longer boot time.
  19.  
  20. ########################################################
  21. ### --- Machine Modules to include in boot image --- ###
  22. ########################################################
  23. # A machine profile is a set of modules for a specific set of hardware
  24. # components like a thinclient with adapters. It does not include any
  25. # filesystem modules, those need to be selected individualy. Making a
  26. # a machine profile is a two step process. First you will need to make
  27. # an allmodules build like "./build --allmodules" with the extensions-x
  28. # package included. Once the client machine is booted with that image
  29. # you can open and xterm or telnet in and run "hwlister.sh". hwlister.sh
  30. # will compile some lists and attempt to post them to the pxe server assigned
  31. # to the client. If the pxe server is this workstation and you are hosting
  32. # files directly out of this build env, you can then run
  33. # "./mkmachine SOME-MODEL" and the files will be put into the machine folder
  34. # under that model name. Now all you have to do is add a line to this file
  35. # like "machine SOME-MODEL" and you will no longer have to make
  36. # allmodules builds. If this is not the pxe server, you will have to
  37. # move stuff around on your own, but the most important files are
  38. # modules.list and firmware.list.
  39.  
  40. ################################################
  41. ### --- Modules to include in boot image --- ###
  42. ################################################
  43. # Any modules may be added as "module" or "module_pkg".
  44. # If defined as a "module", the driver is included in the boot image.
  45. # If defined as a "module_pkg", the driver is added from outside the
  46. # image, such as from a tftp server. See note below for more details.
  47. #
  48. # Normally you should use "module". Only use "module_pkg" if you want
  49. # to dynamically load modules.
  50. # Note: If you create a module_pkg network driver, and decide to load it
  51. # from a tftp server, it won t work. This is because the image
  52. # won t have a network driver to get the module_pkg in the first
  53. # place.
  54.  
  55. #!Hardware
  56. #!!Machine module list
  57. machine m704 # Gigabyte m704 Rover PC
  58. machine WYSE9150se # WYSE 9150se Thin Client
  59. machine NT-A3500 # Foxconn AMD E-350 Barebone
  60. machine NT-535 # Foxconn Intel D525 Barebone
  61. machine Dell-FX170 # Dell FX170 D525 Atom Machine
  62. machine VMWare # A good set of modules for a VmWare Virtual Machine
  63. machine Virtualbox-4.1 # A good set of modules for a Virtualbox Virtual Machine
  64. machine VIA-Epia-CLE266 # VIA Epia/Eden based on the the CLE266 chip. Rather common in thin clients a few years old
  65. machine classic_generic # Big list of modules that you can choose by unremarking them
  66. machine IGEL-M300C # Igel CX700 Via
  67. machine HP-t5135 # HP CX700 Via
  68.  
  69. #!!Wireless Stuff
  70. #package wpa_supplicant
  71. #package wireless
  72. #package wifi-connect
  73. #!!!Misc Modules
  74.  
  75. #!!Filesystem Support
  76. # Every mounted device needs a filesystem, so choose which ones you need.
  77. module usb-storage
  78. #module autofs4 # Automount and autofs support
  79. module isofs # ISO9960 file system support for CDRoms
  80. module udf # CDRom UDF file system support
  81. module vfat # Fat and VFat file system support
  82. #module ntfs # NTFS file system support
  83. #module ext2 # Ext2 file system support
  84. #module ext3 # Ext3 file system support
  85. module ext4 # Ext4 file system support
  86. #module nfs # NFS file system support
  87. #module cifs # CIFS support (use either this or smbfs - not both)
  88.  
  89. #################################################
  90. ### --- Packages to include in boot image --- ###
  91. #################################################
  92.  
  93. # A package is a program or utility.
  94. # Any packages may be added as "package" or "pkg".
  95. # If defined as a "package", the program is included in the boot image.
  96. # If defined as a "pkg", the program is added from outside the image.
  97. # Normally, you should use "package". Only use "pkg" if you want to
  98. # dynamically load programs.
  99.  
  100.  
  101. # --- Packages to include in boot image
  102. # --- Packages below may be "package" or "pkg"
  103. #!!Miscellaneous
  104. package aufs # This is needed in order for squashfs compression mode to work.
  105. #package ts-classic # The classic ts logic for network/netfiles/hostname/mounting/telnetd/telnet/playcd
  106. #package automount
  107. package udisks
  108. package networkmanager
  109. #package udisks-glue
  110. package ntp # Utility to obtain date & time from network
  111. #package sound-esd # Enable sound-esd or sound-nasd if you want to be able to control
  112. #package sound-nasd # sound on your thin client from another computer or
  113. # your remote session.
  114. package alsa
  115. package gnome-media
  116. #package gnome-network-properties
  117. package gnome-core
  118. package volumeicon
  119. #package kismet
  120. package gst-plugins-base
  121. package gst-plugins-good
  122. #package crystalhd
  123. #package libva
  124. #package iptables # IP Tables support
  125. package cpufreq
  126. #package cpuspeed
  127. #package wine # Windows Application Execution Platform
  128.  
  129. #!!X related
  130. # --- XOrg 7.7
  131. #package xorg7-v4l
  132. package xorg7-vesa #A fallback driver that works with almost everything. Does allow resolution changes
  133. package xorg7-vmware
  134. package xorg7-ati #ATI video driver for most modern ATI chipsets. Usually requires several firmwares
  135. package xorg7-nouveau #New opensource nvidia driver
  136. #package xorg7_nvidia #Proprietary nvidia driver
  137. #package xorg7_nvidia_64 # Additional 64bit module
  138. package xorg7-openchrome #Via Video Chipsets driver
  139. package xorg7-intel #Intel video driver for most modern chipsets except the GMA3500/3600
  140. #package xorg7-sis
  141.  
  142. #!!Locale or localization files for keyboard and fonts. (Language/Country)
  143. #package locale-cs_CZ # Czech
  144. #package locale-da_DK # Danish
  145. #package locale-de_DE # German
  146. package locale-en_GB # English-Great Britain
  147. package locale-en_US # English-US
  148. #package locale-es_ES # Spanish
  149. #package locale-fi_FI # Finnish
  150. #package locale-fr_BE # French Belgium
  151. #package locale-fr_CA # French Canadian
  152. #package locale-fr_CH # French Switzerland
  153. #package locale-fr_FR # French
  154. #package locale-hr_HR # Croation
  155. #package locale-hu_HU # Hungarian
  156. #package locale-it_IT # Italian
  157. #package locale-ja_JP # Japanese
  158. #package locale-nb_NO # Norwegian (bokmål)
  159. #package locale-pl_PL # Polish
  160. #package locale-pt_PT # Portuguese
  161. #package locale-pt_BR # Portuguese-Brazil
  162. #package locale-ru_RU # Russian
  163. #package locale-sv_SE # Swedish
  164. #package locale-tr_TR # Turkish
  165.  
  166. #!Applications
  167. #!!Connection Package types. Choose *at least* one!
  168. package freerdp # X RDP Client - fork of rdesktop
  169. #package rdesktop # X RDP client for Windows Terminal Services (ver 1.7)
  170. #package vncviewer # VNC client (vncviewer)
  171. #package xorg7vnc # Remote Control Client Workstation
  172. #package ica # Citrix ICA client support
  173. #package tarantella # Tarantella client support
  174. #package xnest # XDM in a window client
  175. #package urxvt # Light Xterm Client (vt102)
  176. #package xterm # Xterm Client (vt220)
  177. #package ssh # Secure Shell client
  178. #package tn5250 # 5250 terminal emulator
  179. #package dillo # Dillo light web browser
  180. #package thinlinc # Cendio ThinLinc client support
  181. #package nx # No Machine NX client
  182. #package 2x # 2X client
  183. #package java # Java runtime
  184. #package firefox_lowmem # Firefox 3 for low resource machines
  185. #package firefox # Firefox current Web Browser
  186. #package chrome # Google Chrome Web Browser
  187. #package kiosk # Rkiosk Plugin for Firefox
  188. #package flash_lowmem # Flash 9 browser plugin for firefox and low resource machines
  189. #package flash # Flash Current
  190. #package filezilla # FileZilla FTP Client for X
  191. #package git # GIT Version Control System
  192. #package gparted # Gnome Partition Manager
  193. package open-vm-tools
  194. #package medit # Notepad
  195. #package mplayer # DVD and video player
  196. #package vmview # VMware Open-View Client, no PCoIP
  197. package vmviewpcoip # VMware Open-View Client, PCOIP
  198. #package xbmc # XBMC Media Center for X
  199. #package evince # X PDF Viewer
  200.  
  201. #!!Window Managers. Choose no more than 1 window manager.
  202. # Not needed if you don t want to manage windows.
  203. #package openbox # A spartin clean/fast window manager.
  204. #package xdesktop-kiosk # A locked down desktop kiosk using the openbox wm (See packages/xdesktop-kiosk/build/conf for
  205. # more help.
  206. #package icewm # "ICEWM" window manager. Makes TS a light workstation.
  207. #package icewm-theme-xp
  208. #package icewm-themes # Extra IceWM themes
  209. #package icewm-theme-bernstein
  210. #package icewm-theme-bluecrux
  211. #package icewm-theme-liquid
  212.  
  213. package xfwm4
  214. #package xfwm4-extra
  215. package xfce4-power-manager
  216. #package terminal # Terminal emulator for xfwm4 --
  217. Pulls in xfwm4
  218. #package thunar # File Manager for xfwm4 -- Pulls in
  219. xfwm4
  220.  
  221. #!!Window Manager Utils
  222. #package idle-shutdown # Package that lets you specify automatic shutdown settings and logic.
  223. #package wbar # Adds icons to desktop
  224. #package idesk
  225.  
  226. #!!Other services
  227. #package www # Web access to client. From a browser: "http://<IP number>"
  228. # The standard page is for general user settings, administrative access
  229. # is on port 6800.
  230. #package lp_server # Remote printing daemon (JetDirect compatible)
  231. #package lpr # LPR Print Server, for use with samba-server package
  232. #package lprng # LPRng Print Server, supports network based printing
  233. package cups
  234. #package sshd # Dropbear secure shell server
  235. #package tftpd # Built in tftpd server. Useful for making a tftpserver
  236. # for thinstation on a WAN over a slow link.
  237. #package samba-server # Samba server FS Support, allows you to share
  238. # local floppy/cdrom/hd/printer to other Windows
  239. # PCs. Needs supermount for removeable media.
  240. package samba-client # Samba smbclient, gives a shell like
  241. environment to access an samba server
  242. #package hdupdate # Package for updating TS images on a hardisk over a network connection
  243. #package scp # Add ability to download files over internet using scp. This package
  244. # adds some networking based options for downloading configuration files or
  245. # in using hdupdate package.
  246. #package openvpn # OpenVPN Client Support
  247.  
  248.  
  249. #!!PCSCD Card Readers
  250. #package gemplus410 # Card reader Gemplus 410 (Serial) and Gemplus 430 (USB)
  251. #package ccidreader # Generic USB card reader
  252.  
  253.  
  254. #!!Miscellaneous
  255. package gtk-2.0 # Full gtk-2.0 plus clearlooks theme
  256. package icons-cursor # Anti Aliased Mouse Cursor Theme
  257. package icons-hicolor # Hi-Color icons for some applications and themes. Does not really contain any icons.
  258. package icons-gnome # gnome Hi-Color icons theme. Needed by most other icon themes.
  259. #package icons-tango # tango Hi-Color icons theme
  260. #package icons-neu # neu Hi-Color icons theme
  261. #package fonts-misc
  262. #package fonts-jis-misc # Japanese Industrial
  263. #package fonts-util
  264. #package fonts-cyrillic
  265. #package fonts-Speedo-Bitstream
  266. package fonts-TTF-BH # This one works nicely most of the time and is small.
  267. package fonts-TTF-vera
  268. #package fonts-TTF-MS # Fonts for rendering documents developed on the MS Platform.
  269. # Might want to talk to a lawyer before using these.
  270. package fonts-TTF-liberation
  271. #package fonts-75dpi-Adobe
  272. #package fonts-75dpi-Adobe-Utopia
  273. #package fonts-75dpi-BH
  274. #package fonts-75dpi-BH-Typewriter
  275. #package fonts-75dpi-Bitstream
  276. #package fonts-100dpi-Adobe
  277. #package fonts-100dpi-Adobe-Utopia
  278. #package fonts-100dpi-BH
  279. #package fonts-100dpi-BH-Typewriter
  280. #package fonts-100dpi-Bitstream
  281. #package fonts-Type1-Adobe-Utopia
  282. #package fonts-Type1-BH
  283. #package fonts-Type1-Bitstream
  284. #package fonts-Type1-IBM
  285. #package fonts-Type1-xfree86
  286. #package lshw # list hardware
  287. #package e3 # Basic vi like Editor
  288. #package rox # Basic File Manager
  289. #package debug # metapackage to include other debugging packages and stop during bootup to check things.
  290. #package extensions # Adds various shell commands, will increase image size.
  291. #package extensions-x # Adds various utility s for the X Environment !!!! INCLUDES hwlister.sh !!!!
  292. #package eGalax # eGalax TouchKit Drivers/Utility for serial and usb touchscreens by EETI.
  293. #package installer # Wipes a drive, makes partitions and downloads thinstation from a pxe server
  294. #package devstation # Starts a tftp server that hosts files from the boot-images/pxe folder
  295.  
  296. # Parameters
  297. ########################################
  298. ### --- Miscellaneous Parameters --- ###
  299. ########################################
  300. #!!Basic
  301.  
  302. #param fastboot true # Mangles the filesystem a special way as to improve boot spead and reduce
  303. # memory utilization. Cool/Dangerous . Harder to dubug other packages. (Finishing Touch)
  304. # Set to 'true' to enable or 'lotsofmem' for slightly slower booting but no squash lag on app launch.
  305. #param tsuser tsuser # Name of the user that thinstation will run as. Needs userauto package.
  306. #param tsuserpasswd pleasechangeme # Do Change! Console/telnet password for non-root
  307.  
  308. param rootpasswd pleasechangeme # Do Change! Console/telnet password for root
  309. # If this is enabled, Telnetd will be enabled.
  310. param xorgvncpasswd pleasechangeme # VNC Access Password
  311. param storagepasswd pleasechangeme # Password for storage server
  312. param dialuppasswd pleasechangeme # Password for dialin account
  313. param sambapasswd pleasechangeme # Password for samba shares when using user mode security
  314. #param kernelcmdline "radeon.modeset=0" # Add additional kernel command lines. e.g. disable radeon framebuffer
  315. #param stripelf yes # Strip extraneous information from elf binaries (Maybe not Safe)
  316. #param acpisupport disable # Tells the kernel not to load acpi modules. (Breaks some Intel Chipsets if disabled)
  317. #param uvesafb disable # Disable uvesafb (legacy option like modesetfb)
  318. #param extra_vid LVDS-1:d # Add an extra video= parameter to kernel cmd line (good for disabling outputs on video cards)
  319. param bootlogo true # Enable or Disable the use of the Boot splash.
  320. param boottheme default # Backgound picture during boot
  321. #param splash verbose # kernel splash setting (0=off, silent or verbose (default=silent)
  322. param splash silent
  323. param fbmtrr 0 # MTRR value for uvesafb (default = 0, 4 is the best) grep your log to make sure you have not set it to high
  324. #param fbnocrtc true # This is usually a good thing.
  325. param fbsm ywrap # Window scrolling method (redraw, ypan, ywrap) ywrap is best, but may not work correctly for all people
  326. #param fbvtotal 16 # Override Video Bios Reported Memory in MB
  327. #param fbmaxhf 67 # Override Video Negotiated Max Horizontal Frequency
  328. #param fbmaxvf 61 # Override Video Negotiated Max Vertical Frequency
  329. #param fbmaxclk 155 # Override Video Negotiated Max Clock Frequency
  330. #param fbnoedid true # Don t do video edid
  331. #param bootresolution 1024x600-32 # Resolution used during Thinstation boot.
  332. #param bootresolution 1024x768-32 # You can wright your own resolution mode here, if you know it.
  333. #param bootresolution 1152x864-32
  334. param bootresolution 1280x768-32
  335. #param bootresolution 1366x768-32 # Otherwise, you may want to refer to the vbe_modes.list you created with hwlister.sh
  336. #param bootresolution 1280x1024-32 # for modes that your card supports.
  337. #param bootresolution 1400x900-32 # It is also used by xrandr if no xrandr options are specified.
  338. #param bootresolution 1680x1050-32
  339. #param bootresolution 1920x1080-32
  340. #param bootresolution 1400x1050-32
  341.  
  342. param desktop file:./backgrounds/Hive_Lite.jpg # Custom image to load as desktop background
  343. param defaultconfig thinstation.conf.buildtime # The file with default setup. No other config file is found
  344. # during boot.
  345. param basename thinstation # Used for all config/tftp/scp file names
  346. param basepath ts5.4 # Used to determine path to tftp/scp files
  347. param baseurl http://www.doncuppjr.net # Used to determine url to wget files
  348. #param keyfile ./id_rsa # Path for private key file used for ssh/scp
  349. #param knownhosts ./known_hosts # Path for ssh known_hosts file for ssh/scp
  350. #param localpkgs false # to determine is PKG files are to be loaded locally
  351. #param fulllocales true # Use full locale support for packages
  352. #param icaencryption false # Use ica encryption support, add 290k to image
  353. param haltonerror false # Will halt on error, default is true
  354. param hardlinkfs true
  355. param sametimestmp true # When enabled, the timestamps for all files and folders will be set to 00:00 of todays date in your timezone
  356. param initrdcmd "squashfs" # Compression mode and level of initrd file. none, gzip -9, lzma -9 ,bzip2 -9
  357. param bootverbosity 3 # Increased vebosity when booting TS
  358. # 0 no verbose messages
  359. # 1 boot
  360. # 2 network
  361. # 4 init
  362. # 8 kernel
  363. # 16 modules
  364. # 32 packages
  365. # 64 email bootlog file to SMTP server & user set in
  366. # thinstation.conf file. This will only work
  367. # if networking is working.
  368. #
  369. # Combinations can be used (e.g. 24 does Kernel and Module Messages)
  370.  
  371. #!!Advanced
  372. # Leave this alone unless you can t download (wget required on your Linux box):
  373. param downloads /downloads
  374. param bootimages "iso syslinux pxe"
  375. param syslinuxtheme "default"
  376. #param httpproxy http://192.168.1.2:8080
  377.  
  378. #param bootfssize 50% # Modify the size of the tmpfs filesystem
  379.  
  380. package alltimezone
  381. param allres true # Includes a lot of resolution splash images for live-cd s
  382. param allfirmware true # Includes a lot of firmwares for live-cd s
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement