summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlackNoxis <steven.darklight@gmail.com>2015-06-01 14:19:29 +0300
committerBlackNoxis <steven.darklight@gmail.com>2015-06-01 14:19:29 +0300
commit4452a22cbbda1c8a6131ecbbd70fc2e835068816 (patch)
tree0773ae4e6807acf7e8e80391a7cc37cc4b8dad65
parent967d95463eba4decd05ab127676d9501b9835e22 (diff)
parent7181b5ff887a694b6e1834bf01528b7ff20c5fd4 (diff)
Merge branch 'master' of github.com:BlackNoxis/roskel
-rw-r--r--skel/.default/grub63
1 files changed, 0 insertions, 63 deletions
diff --git a/skel/.default/grub b/skel/.default/grub
deleted file mode 100644
index 0a61a10..0000000
--- a/skel/.default/grub
+++ /dev/null
@@ -1,63 +0,0 @@
-# /etc/default/grub
-# If you change this file, run 'grub-mkconfig -o /boot/grub/grub.cfg' afterwards to update
-# /boot/grub/grub.cfg.
-
-GRUB_DEFAULT=saved
-GRUB_DISTRIBUTOR=Kogaion
-GRUB_HIDDEN_TIMEOUT=0
-GRUB_HIDDEN_TIMEOUT_QUIET=true
-GRUB_TIMEOUT=5
-GRUB_DISABLE_LINUX_UUID=true
-
-# Add your extra parameters here below
-# Dear user, put your boot flags here ;-)
-GRUB_CMDLINE_LINUX_DEFAULT=""
-# ATTENTION ATTENTION ATTENTION
-# DO NOT EDIT THIS MANUALLY NOR SET IT TO EMPTY IF IT'S ALREADY FILLED WITH
-# SOMETHING (DONE BY THE INSTALLER). REALLY, DON'T !
-GRUB_CMDLINE_LINUX=""
-# ATTENTION ATTENTION ATTENTION
-
-# Uncomment to disable graphical terminal (grub-pc only)
-# GRUB_TERMINAL=console
-
-# The resolution used on graphical terminal
-# note that you can use only modes which your graphic card supports via VBE
-# you can see them in real GRUB with the command `vbeinfo'
-GRUB_GFXMODE=1024x768
-
-# Uncomment if you don't want GRUB to pass "root=UUID=xxx" parameter to Linux
-#GRUB_DISABLE_LINUX_UUID=true
-
-# Uncomment to disable generation of recovery mode menu entrys
-# GRUB_DISABLE_LINUX_RECOVERY="false"
-
-# Default wallpaper image path
-GRUB_WALLPAPER="/boot/grub/default-splash.png"
-
-# Boot menu option normal color
-GRUB_COLOR_NORMAL="white/black"
-
-# Boot menu option "highlight" color
-GRUB_COLOR_HIGHLIGHT="magenta/black"
-
-if [ -f "/etc/default/kogaion-grub" ]; then
- # this file is placed by the Kogaion Installer and contains
- # custom GRUB_CMDLINE_LINUX parameters created at install
- # time.
- source /etc/default/kogaion-grub
-fi
-
-# DO NOT REMOVE THIS IF YOUR GRUB_CMDLINE_LINUX IS EMPTY (BACKWARD COMPAT)
-if [ -z "${GRUB_CMDLINE_LINUX}" ]; then
- if [ ! -e "/proc/cmdline" ]; then
- echo "ATTENTION ATTENTION ATTENTION" >&2
- echo "GRUB_CMDLINE_LINUX is not set inside /etc/default/grub" >&2
- echo " cannot generate a bootable configuration." >&2
- else
- echo "ATTENTION ATTENTION ATTENTION" >&2
- echo "GRUB_CMDLINE_LINUX is not set inside /etc/default/grub" >&2
- echo " grub is going to use your /proc/cmdline content" >&2
- GRUB_CMDLINE_LINUX="`cat /proc/cmdline | sed -e 's#BOOT_IMAGE=.* ro ##g'`"
- fi
-fi