Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
lipck
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
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
osak
lipck
Commits
faaaeda3
Commit
faaaeda3
authored
10 years ago
by
Christopher Spinrath
Browse files
Options
Downloads
Patches
Plain Diff
Converted remaster_iso to Makefile
parent
1b5a41a2
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+1
-1
1 addition, 1 deletion
Makefile
scripts/remaster_iso.sh
+0
-39
0 additions, 39 deletions
scripts/remaster_iso.sh
with
1 addition
and
40 deletions
Makefile
+
1
−
1
View file @
faaaeda3
...
@@ -345,7 +345,7 @@ image_binary_files $(IMAGE_DIR)/.lipbinaries: image_git_pull $(IMAGE_BINARIES)
...
@@ -345,7 +345,7 @@ image_binary_files $(IMAGE_DIR)/.lipbinaries: image_git_pull $(IMAGE_BINARIES)
touch
"
$(
IMAGE_DIR
)
/.lipbinaries"
touch
"
$(
IMAGE_DIR
)
/.lipbinaries"
image_remaster $(IMAGE_DIR)/.remastered
:
$(IMAGE_DIR)/.lipbinaries
image_remaster $(IMAGE_DIR)/.remastered
:
$(IMAGE_DIR)/.lipbinaries
$(
CURDIR
)
/scripts/remaster_iso.sh
"
$(
CURDIR
)
"
"
$(
IMAGE_DIR
)
"
$(
call patch_all,
$(
CURDIR
)
/patches/iso/,
$(
IMAGE_DIR
)
)
touch
"
$(
IMAGE_DIR
)
/.remastered"
touch
"
$(
IMAGE_DIR
)
/.remastered"
image_content
:
image_git_pull $(IMAGE_DIR)/.remastered $(IMAGE_DIR)/grub/lipinfo.cfg
image_content
:
image_git_pull $(IMAGE_DIR)/.remastered $(IMAGE_DIR)/grub/lipinfo.cfg
...
...
This diff is collapsed.
Click to expand it.
scripts/remaster_iso.sh
deleted
100755 → 0
+
0
−
39
View file @
1b5a41a2
#!/bin/bash
#This file is part of lipck - the "linux install party customization kit".
#
# Copyright (C) 2014 trilader, Anwarias, Christopher Spinrath
#
# lipck is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# lipck is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with lipck. If not, see <http://www.gnu.org/licenses/>.
set
-e
SCRIPT_DIR
=
"
$1
"
ISO_REMASTER_DIR
=
"
$2
"
if
[
!
-d
"
$SCRIPT_DIR
"
]
;
then
echo
"Expected lipck base path as first argument!"
exit
1
fi
if
[
!
-d
"
$ISO_REMASTER_DIR
"
]
;
then
echo
"Expected target iso or target image root directory as second argument!"
exit
2
fi
if
[
-e
"
$SCRIPT_DIR
/scripts/common_functions.sh"
]
;
then
source
"
$SCRIPT_DIR
/scripts/common_functions.sh"
fi
patch_all
"
$SCRIPT_DIR
/patches/iso/"
"
$ISO_REMASTER_DIR
"
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