Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lipstick
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
osak
lipstick
Commits
58a2c733
Commit
58a2c733
authored
Jan 8, 2015
by
Lars Beckers
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' of fsgit:lipstick
parents
bf3f6c10
03125192
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
grub/grub.cfg
+17
-6
17 additions, 6 deletions
grub/grub.cfg
scripts/update_stick.sh
+6
-1
6 additions, 1 deletion
scripts/update_stick.sh
with
23 additions
and
7 deletions
grub/grub.cfg
+
17
−
6
View file @
58a2c733
...
...
@@ -51,6 +51,17 @@ fi
set
gfxpayload
=
keep
#default values
set
lip_flavor
=
"Kubuntu"
set
lip_version
=
"14.04"
set
lip_release
=
"trusty"
set
lip_extra_info
=
""
#if lipinfo.cfg exists use it to get better values for the lip_* variables.
if
[ -f /grub/lipinfo.cfg ]
; then
source
/grub/lipinfo.cfg
fi
# Start a Debian style Casper Kernel
function
LoadCasper
{
echo
"Loading
kernel-${arch}
(takes
up
to
2
minutes)"
...
...
@@ -60,12 +71,12 @@ function LoadCasper {
echo
"Starting
kernel"
}
menuentry
"Empfohlen:
Kubuntu
14.04.1
${bits}bit
(deutsch)"
{
menuentry
"Empfohlen:
${lip_flavor}
${lip_version}${lip_extra_info}
${bits}bit
(deutsch)"
{
set
cmdline
=
"debian-installer/locale=de_DE console-setup/layoutcode=de"
LoadCasper
}
menuentry
"Empfohlen:
Kubuntu
14.04.1
${bits}bit
(english)"
{
menuentry
"Empfohlen:
${lip_flavor}
${lip_version}${lip_extra_info}
${bits}bit
(english)"
{
set
cmdline
=
""
LoadCasper
}
...
...
@@ -114,22 +125,22 @@ menuentry "Tool: 64bit GParted Live CD (laeuft im RAM -> mindestens 224MB)" {
echo
"Starting
64
bit
GParted
kernel"
}
menuentry
"
Kubuntu
14.04.1
${bits}bit
(deutsch,
failsafe)"
{
menuentry
"
${lip_flavor}
${lip_version}${lip_extra_info}
${bits}bit
(deutsch,
failsafe)"
{
set
cmdline
=
"debian-installer/locale=de_DE console-setup/layoutcode=de nomodeset noplymouth nosplash verbose text noacpi"
LoadCasper
}
menuentry
"
Kubuntu
14.04.1
${bits}bit
(english,
failsafe)"
{
menuentry
"
${lip_flavor}
${lip_version}${lip_extra_info}
${bits}bit
(english,
failsafe)"
{
set
cmdline
=
"nomodeset noplymouth nosplash verbose text noacpi"
LoadCasper
}
menuentry
"
Kubuntu
14.04.1
${bits}bit
(deutsch,
load
casper
from
first
disk)"
{
menuentry
"
${lip_flavor}
${lip_version}${lip_extra_info}
${bits}bit
(deutsch,
load
casper
from
first
disk)"
{
set
cmdline
=
"debian-installer/locale=de_DE console-setup/layoutcode=de live-media=/dev/sda1"
LoadCasper
}
menuentry
"
Kubuntu
14.04.1
${bits}bit
(english,
load
casper
from
first
disk)"
{
menuentry
"
${lip_flavor}
${lip_version}${lip_extra_info}
${bits}bit
(english,
load
casper
from
first
disk)"
{
set
cmdline
=
"live-media=/dev/sda1"
LoadCasper
}
...
...
This diff is collapsed.
Click to expand it.
scripts/update_stick.sh
+
6
−
1
View file @
58a2c733
#!/bin/bash
BRANCH
=
"ws14"
[
-e
".git"
]
||
exit
1
if
[
!
-d
".git"
]
;
then
>
&2
echo
"Fatal error: expected .git directory in the working directory."
>
&2
echo
"Please make sure this script is executed in the root directory of the LIP Image."
exit
1
fi
[
-z
"
$1
"
]
||
BRANCH
=
"
$1
"
git pull
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment