Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
create-iso
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
le6
create-iso
Commits
4123176b
Commit
4123176b
authored
Mar 01, 2018
by
Daniel Bissani Furlin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add le-multiterminal to preseed
parent
3c552e23
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
18 additions
and
16 deletions
+18
-16
initrd.img-4.13.0-36-generic
initrd.img-4.13.0-36-generic
+0
-0
pkg-list/le6/testing/install.list
pkg-list/le6/testing/install.list
+3
-2
scripts-available/install.sh
scripts-available/install.sh
+2
-2
scripts-available/post-epilogue.sh
scripts-available/post-epilogue.sh
+3
-2
scripts-available/update-sourceslist.sh
scripts-available/update-sourceslist.sh
+1
-1
sources-list/le6/testing/le6.list
sources-list/le6/testing/le6.list
+2
-2
src/preseed/preseed.cfg
src/preseed/preseed.cfg
+7
-7
vmlinuz-4.13.0-36-generic
vmlinuz-4.13.0-36-generic
+0
-0
No files found.
initrd.img-4.
4.0-112
-generic
→
initrd.img-4.
13.0-36
-generic
View file @
4123176b
No preview for this file type
pkg-list/le6/testing/install.list
View file @
4123176b
le-all
linux-generic
#le-all
#linux-generic-hwe-16.04
#xserver-xorg-hwe-16.04
scripts-available/install.sh
View file @
4123176b
...
...
@@ -41,7 +41,7 @@ source ${PREFIX}/common.sh
addToChrootFile
$CHROOTFILE
"env PATH='/fakebin:
${
PATH
}
'"
addToChrootFile
$CHROOTFILE
"export DEBIAN_FRONTEND=noninteractive"
addToChrootFile
$CHROOTFILE
"apt-get update && apt-get -q -y -t stable
install le-live-all"
addToChrootFile
$CHROOTFILE
"apt-get update && apt-get -q -y -t stable
install
$(
cat
${
INSTLIST
}
|
grep
-v
'^#'
|
tr
'\n'
' '
)
"
#addToChrootFile $CHROOTFILE "apt-get update && apt-get -q -y -t testing
install le-live-all"
#addToChrootFile $CHROOTFILE "apt-get update && apt-get -q -y -t testing
install $(cat ${INSTLIST} | grep -v '^#' | tr '\n' ' ')"
exit
0
scripts-available/post-epilogue.sh
View file @
4123176b
...
...
@@ -40,10 +40,11 @@ PREFIX=$PWD
source
common.sh
# Get .debs needes to install lc-conf, lc-client-all and lc-server-all
mkdir
-p
${
PREFIX
}
/packages-needed/
le-conf
mkdir
-p
${
PREFIX
}
/packages-needed/
chroot
${
CHROOTDIR
}
apt-get clean
chroot
${
CHROOTDIR
}
apt-get
--download-only
-y
install
le-conf
mv
${
CHROOTDIR
}
/var/cache/apt/archives/
*
.deb
${
PREFIX
}
/packages-needed/le-conf
chroot
${
CHROOTDIR
}
apt-get
--download-only
-y
install
le-multiterminal
mv
${
CHROOTDIR
}
/var/cache/apt/archives/
*
.deb
${
PREFIX
}
/packages-needed/
chroot
${
CHROOTDIR
}
apt-get clean
cp
-r
packages-needed
${
TMP
}
/image/
...
...
scripts-available/update-sourceslist.sh
View file @
4123176b
...
...
@@ -47,6 +47,6 @@ cp ${OURSOURCESLIST} ${CHROOTDIR}/etc/apt/sources.list.d/
addToChrootFile
$CHROOTFILE
"wget -O- http://repo.c3sl.ufpr.br/le6/le.c3sl.ufpr.br.key | apt-key add -"
addToChrootFile
$CHROOTFILE
"apt-get update"
addToChrootFile
$CHROOTFILE
"apt-get -y dist-upgrade"
#
addToChrootFile $CHROOTFILE "apt-get -y dist-upgrade"
exit
0
sources-list/le6/testing/le6.list
View file @
4123176b
deb http://repo.c3sl.ufpr.br/le6/
stable
main
deb-src http://repo.c3sl.ufpr.br/le6/
stable
main
deb http://repo.c3sl.ufpr.br/le6/
testing
main
deb-src http://repo.c3sl.ufpr.br/le6/
testing
main
src/preseed/preseed.cfg
View file @
4123176b
...
...
@@ -2,10 +2,10 @@ ubiquity ubiquity/use_nonfree boolean true
d-i apt-setup/backports boolean false
ubiquity ubiquity/success_command \
string in-target apt-get -y autoremove; \
in-target apt-get -y install le-conf ||
\
(package_path=$(find /cdrom/ -type d -name "pool" -prune -o -type f -print | grep 'le-conf_.*.deb')
&& \
package_dir=$(dirname ${package_path}) &&
\
cp -r ${package_dir}/* /target/ &&
\
packages=$(ls ${package_dir}) &&
\
in-target dpkg -i ${packages} &&
\
in-target
rm -rf ${packages})
(packages_dir=$(find /cdrom/ -type d -name "packages-needed") &&
\
cp ${packages_dir}/* /target/var/cache/apt/archives/
&& \
in-target apt-get -y install le-conf;
\
(if grep -qi "multiseat" /etc/default/multiseat;
\
then in-target DEBIAN_FRONTEND=noninteractive
\
apt-get install -q -y le-multiterminal; fi);
\
in-target
apt-get clean
vmlinuz-4.
4.0-112
-generic
→
vmlinuz-4.
13.0-36
-generic
View file @
4123176b
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment