amnesia 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # -*- mode: sh; -*-
  2. # Configuration file for the Amnesia live system
  3. #
  4. # You'd better never directly edit this file: rather put your custom
  5. # variable assignments in a new file called 'amnesia.local', in the
  6. # same directory as this one. The values found in the '.local' file
  7. # will override the ones from this one.
  8. #
  9. # These configuration files are actually shell scripts, and are
  10. # sourced by various other scripts.
  11. # Base for the string that will be passed to "lb config --bootappend-live"
  12. # FIXME: see [[bugs/sdmem_on_eject_broken_for_CD]] for explanation why we
  13. # need to set block.events_dfl_poll_msecs
  14. AMNESIA_APPEND="live-media=removable apparmor=1 security=apparmor nopersistence noprompt timezone=Etc/UTC block.events_dfl_poll_msecs=1000 splash noautologin module=Tails kaslr slab_nomerge slub_debug=FZ mce=0 vsyscall=none"
  15. # Options passed to isohybrid
  16. AMNESIA_ISOHYBRID_OPTS="-h 255 -s 63"
  17. # Minimal upstream version of syslinux-utils we need
  18. REQUIRED_SYSLINUX_UTILS_UPSTREAM_VERSION="6.03~pre20"
  19. # Kernel version
  20. KERNEL_VERSION='4.7.0-0.bpo.1'
  21. KERNEL_SOURCE_VERSION=$(
  22. echo "$KERNEL_VERSION" \
  23. | perl -p -E 's{\A (\d+ [.] \d+) [.] .*}{$1}xms'
  24. )
  25. ### You should not have to change anything below this line ####################
  26. # sanity checks
  27. if [ ! -x "`which dpkg-parsechangelog`" ]; then
  28. echo "could not find dpkg-parsechangelog, please apt-get install dpkg-dev" >&2
  29. exit 2
  30. fi
  31. # Compute the current Amnesia's version once for all
  32. AMNESIA_NOW="`date --utc '+%Y%m%dT%H%MZ'`"
  33. AMNESIA_TODAY="`date '+%Y%m%d'`"
  34. AMNESIA_VERSION="`dpkg-parsechangelog -SVersion`"
  35. AMNESIA_FULL_VERSION="${AMNESIA_VERSION} - ${AMNESIA_TODAY}"
  36. # Developpers' data used by git-dch, debcommit and friends in the release script
  37. AMNESIA_DEV_FULLNAME='Tails developers'
  38. AMNESIA_DEV_EMAIL="tails@boum.org"
  39. AMNESIA_DEV_KEYID="A490 D0F4 D311 A415 3E2B B7CA DBB8 02B2 58AC D84F"