mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-03-04 16:01:24 +00:00
remerge with trunk
This commit is contained in:
commit
ab448a53a3
79
debian/changelog
vendored
79
debian/changelog
vendored
@ -1,8 +1,83 @@
|
||||
livecd-rootfs (0.63) UNRELEASED; urgency=low
|
||||
livecd-rootfs (0.73) UNRELEASED; urgency=low
|
||||
|
||||
* Add ubuntu-umpc support (equivalent to previous ubuntu-mobile).
|
||||
* Add Mythbuntu support.
|
||||
|
||||
-- Mario Limonciello <superm1@ubuntu.com> Wed, 31 Oct 2007 10:26:25 -0400
|
||||
-- Mario Limonciello <superm1@ubuntu.com> Tue, 04 Nov 2008 19:28:35 -0600
|
||||
|
||||
livecd-rootfs (0.72) intrepid; urgency=low
|
||||
|
||||
* Fix source mirror for -updates in generated sources.list (it was
|
||||
incorrect for ports architectures).
|
||||
* Fix description of universe in generated sources.list: packages there
|
||||
are expected to be under a free licence.
|
||||
* Enable universe and multiverse for DVDs (there isn't generally enough
|
||||
space on CDs; see LP #105511).
|
||||
|
||||
-- Colin Watson <cjwatson@ubuntu.com> Thu, 09 Oct 2008 02:13:41 +0100
|
||||
|
||||
livecd-rootfs (0.71) intrepid; urgency=low
|
||||
|
||||
* change mobile to use the mobile-mobile task instead of teh metapackage for
|
||||
building images
|
||||
|
||||
-- Oliver Grawert <ogra@ubuntu.com> Mon, 29 Sep 2008 23:24:15 +0200
|
||||
|
||||
livecd-rootfs (0.70) intrepid; urgency=low
|
||||
|
||||
* linux-lpia-meta exists, change lpia's kernel back to linux-lpia.
|
||||
|
||||
-- Steve Kowalik <stevenk@ubuntu.com> Fri, 26 Sep 2008 16:09:54 +1000
|
||||
|
||||
livecd-rootfs (0.69) intrepid; urgency=low
|
||||
|
||||
* add ubuntu-mobile to build targets
|
||||
|
||||
-- Oliver Grawert <ogra@ubuntu.com> Tue, 23 Sep 2008 12:46:50 +0200
|
||||
|
||||
livecd-rootfs (0.68) intrepid; urgency=low
|
||||
|
||||
* Unmount /proc/sys/fs/binfmt_misc, in case binfmt-support is installed
|
||||
and manages to mount it.
|
||||
* Move MOUNTS variable into cleanup function for clarity; it's used
|
||||
nowhere else.
|
||||
|
||||
-- Colin Watson <cjwatson@ubuntu.com> Mon, 22 Sep 2008 11:52:22 +0100
|
||||
|
||||
livecd-rootfs (0.67) intrepid; urgency=low
|
||||
|
||||
* Bump linux-lpia to -3.
|
||||
|
||||
-- Steve Kowalik <stevenk@ubuntu.com> Mon, 15 Sep 2008 16:41:34 +1000
|
||||
|
||||
livecd-rootfs (0.66) intrepid; urgency=low
|
||||
|
||||
* Remove a bunch of seeded packages from ubuntu-mid's LIST.
|
||||
* Move casper from ubuntu-mid's LIST to LIVELIST.
|
||||
* Add ubiquity to ubuntu-mid's LIVELIST.
|
||||
|
||||
-- Steve Kowalik <stevenk@ubuntu.com> Thu, 11 Sep 2008 19:02:52 +1000
|
||||
|
||||
livecd-rootfs (0.65) intrepid; urgency=low
|
||||
|
||||
* Fiddle the kernel name for lpia.
|
||||
|
||||
-- Steve Kowalik <stevenk@ubuntu.com> Tue, 09 Sep 2008 09:21:10 +1000
|
||||
|
||||
livecd-rootfs (0.64) intrepid; urgency=low
|
||||
|
||||
* Add support for building Ubuntu MID images.
|
||||
- Includes changing the kernel name for lpia due to the lack of meta
|
||||
package for the time being.
|
||||
|
||||
-- Steve Kowalik <stevenk@ubuntu.com> Fri, 22 Aug 2008 18:10:38 +1000
|
||||
|
||||
livecd-rootfs (0.63) intrepid; urgency=low
|
||||
|
||||
* Do not install xresprobe, it is not necessary any more and in universe
|
||||
now.
|
||||
|
||||
-- Martin Pitt <martin.pitt@ubuntu.com> Wed, 13 Aug 2008 09:45:15 +0200
|
||||
|
||||
livecd-rootfs (0.62) intrepid; urgency=low
|
||||
|
||||
|
98
livecd.sh
Normal file → Executable file
98
livecd.sh
Normal file → Executable file
@ -24,7 +24,9 @@ set -eu
|
||||
# Depends: debootstrap, rsync, python-minimal|python, procps, squashfs-tools
|
||||
|
||||
cleanup() {
|
||||
for mnt in $MOUNTS ${ROOT}lib/modules/*/volatile ${ROOT}var/{lock,run}; do
|
||||
for mnt in ${ROOT}dev/pts ${ROOT}dev/shm ${ROOT}.dev ${ROOT}dev \
|
||||
${ROOT}proc/sys/fs/binfmt_misc ${ROOT}proc ${ROOT}sys \
|
||||
${ROOT}lib/modules/*/volatile ${ROOT}var/{lock,run}; do
|
||||
umount $mnt || true
|
||||
done
|
||||
|
||||
@ -73,7 +75,7 @@ select_mirror () {
|
||||
case $ARCH in
|
||||
i386|amd64)
|
||||
case $FS in
|
||||
ubuntu-lpia)
|
||||
ubuntu-lpia|ubuntu-mid)
|
||||
USERMIRROR=http://ports.ubuntu.com/ubuntu-ports
|
||||
SECMIRROR=${USERMIRROR}
|
||||
SECSRCMIRROR=${SRCMIRROR}
|
||||
@ -139,7 +141,7 @@ fi
|
||||
|
||||
for arg in "$@"; do
|
||||
case "$arg" in
|
||||
ubuntu|ubuntu-dvd|ubuntu-lpia|edubuntu|edubuntu-dvd|kubuntu|kubuntu-dvd|kubuntu-kde4|xubuntu|mythbuntu|gobuntu|base|tocd)
|
||||
ubuntu|ubuntu-dvd|ubuntu-lpia|edubuntu|edubuntu-dvd|kubuntu|kubuntu-dvd|kubuntu-kde4|xubuntu|mythbuntu|gobuntu|ubuntu-mid|ubuntu-mobile|ubuntu-umpc|base|tocd)
|
||||
;;
|
||||
*)
|
||||
echo bad name >&2;
|
||||
@ -152,7 +154,6 @@ ROOT=$(pwd)/chroot-livecd/ # trailing / is CRITICAL
|
||||
for FS in "$@"; do
|
||||
FSS="$FS${SUBARCH:+-$SUBARCH}"
|
||||
IMG=livecd.${FSS}.fsimg
|
||||
MOUNTS="${ROOT}dev/pts ${ROOT}dev/shm ${ROOT}.dev ${ROOT}dev ${ROOT}proc ${ROOT}sys"
|
||||
DEV=""
|
||||
COMP="main restricted"
|
||||
|
||||
@ -173,34 +174,44 @@ Flags: seen
|
||||
case "$FS" in
|
||||
ubuntu|ubuntu-lpia|ubuntu-dvd)
|
||||
LIST="$LIST minimal^ standard^ ubuntu-desktop^"
|
||||
LIVELIST="ubuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
||||
LIVELIST="ubuntu-live^ laptop-detect casper lupin-casper"
|
||||
;;
|
||||
kubuntu|kubuntu-dvd)
|
||||
LIST="$LIST minimal^ standard^ kubuntu-desktop^"
|
||||
LIVELIST="kubuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
||||
LIVELIST="kubuntu-live^ laptop-detect casper lupin-casper"
|
||||
;;
|
||||
kubuntu-kde4)
|
||||
LIST="$LIST minimal^ standard^ kubuntu-kde4-desktop^"
|
||||
LIVELIST="language-support-en kubuntu-kde4-live^ xresprobe laptop-detect casper lupin-casper"
|
||||
LIVELIST="language-support-en kubuntu-kde4-live^ laptop-detect casper lupin-casper"
|
||||
COMP="main restricted universe multiverse"
|
||||
;;
|
||||
edubuntu|edubuntu-dvd)
|
||||
LIST="$LIST minimal^ standard^ edubuntu-desktop^"
|
||||
LIVELIST="edubuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
||||
LIVELIST="edubuntu-live^ laptop-detect casper lupin-casper"
|
||||
;;
|
||||
xubuntu)
|
||||
LIST="$LIST minimal^ standard^ xterm libgoffice-gtk-0-6 xubuntu-desktop^"
|
||||
LIVELIST="xubuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
||||
LIVELIST="xubuntu-live^ laptop-detect casper lupin-casper"
|
||||
COMP="main restricted universe multiverse"
|
||||
;;
|
||||
gobuntu)
|
||||
LIST="$LIST minimal^ standard^ gobuntu-desktop^"
|
||||
LIVELIST="gobuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
||||
LIVELIST="gobuntu-live^ laptop-detect casper lupin-casper"
|
||||
COMP="main"
|
||||
;;
|
||||
ubuntu-mid)
|
||||
LIST="$LIST minimal^ ubuntu-mid"
|
||||
LIVELIST="casper ubiquity"
|
||||
COMP="main restricted universe multiverse"
|
||||
;;
|
||||
ubuntu-mobile|ubuntu-umpc)
|
||||
LIST="$LIST minimal^ mobile-mobile^"
|
||||
LIVELIST="casper ubiquity"
|
||||
COMP="main restricted universe multiverse"
|
||||
;;
|
||||
mythbuntu)
|
||||
LIST="$LIST minimal^ standard^ mythbuntu-desktop"
|
||||
LIVELIST="mythbuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
||||
LIST="$LIST minimal^ standard^ mythbuntu-desktop^"
|
||||
LIVELIST="mythbuntu-live^ laptop-detect casper lupin-casper"
|
||||
COMP="main restricted universe multiverse"
|
||||
;;
|
||||
base)
|
||||
@ -234,6 +245,12 @@ Flags: seen
|
||||
case "$FS" in
|
||||
*-dvd)
|
||||
LIVELIST="$LIVELIST ${FS}-live^"
|
||||
UNIVERSE=1
|
||||
MULTIVERSE=1
|
||||
;;
|
||||
*)
|
||||
UNIVERSE=
|
||||
MULTIVERSE=
|
||||
;;
|
||||
esac
|
||||
|
||||
@ -309,6 +326,19 @@ link_in_boot = $link_in_boot
|
||||
*) echo "Unknown architecture: no kernel."; exit 1;;
|
||||
esac
|
||||
|
||||
if [ $FS = "ubuntu-mid" ]; then
|
||||
case "$SUBARCH" in
|
||||
*proprietary*)
|
||||
case "$SUBARCH" in
|
||||
menlow*)
|
||||
LIST="$LIST marvell-8686-firmware-9 psb-video libgl1-mesa-dri-psb xorg-modules-xpsb"
|
||||
;;
|
||||
esac
|
||||
LIST="$LIST mobile-usb-client-utils mobile-usb-host-utils"
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
|
||||
for x in $EXCLUDE; do
|
||||
LIST="$(without_package "$x" "$LIST")"
|
||||
done
|
||||
@ -395,21 +425,47 @@ deb-src ${SECSRCMIRROR} ${STE}-security ${COMP}
|
||||
## Major bug fix updates produced after the final release of the
|
||||
## distribution.
|
||||
deb ${USERMIRROR} ${STE}-updates ${COMP}
|
||||
deb-src ${USERMIRROR} ${STE}-updates ${COMP}
|
||||
deb-src ${SRCMIRROR} ${STE}-updates ${COMP}
|
||||
|
||||
@@EOF
|
||||
if [ "$UNIVERSE" ]; then
|
||||
COMMENT=
|
||||
else
|
||||
cat << @@EOF >> ${ROOT}etc/apt/sources.list
|
||||
## Uncomment the following two lines to add software from the 'universe'
|
||||
## repository.
|
||||
@@EOF
|
||||
COMMENT='# '
|
||||
fi
|
||||
cat << @@EOF >> ${ROOT}etc/apt/sources.list
|
||||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
|
||||
## team. Also, please note that software in universe WILL NOT receive any
|
||||
## review or updates from the Ubuntu security team.
|
||||
${COMMENT}deb ${USERMIRROR} $STE universe
|
||||
${COMMENT}deb-src ${SRCMIRROR} $STE universe
|
||||
${COMMENT}deb ${USERMIRROR} ${STE}-updates universe
|
||||
${COMMENT}deb-src ${SRCMIRROR} ${STE}-updates universe
|
||||
${COMMENT}deb ${SECMIRROR} ${STE}-security universe
|
||||
${COMMENT}deb-src ${SECSRCMIRROR} ${STE}-security universe
|
||||
|
||||
@@EOF
|
||||
if [ "$MULTIVERSE" ]; then
|
||||
COMMENT=
|
||||
else
|
||||
COMMENT='# '
|
||||
fi
|
||||
cat << @@EOF >> ${ROOT}etc/apt/sources.list
|
||||
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
|
||||
## team, and may not be under a free licence. Please satisfy yourself as to
|
||||
## your rights to use the software. Also, please note that software in
|
||||
## universe WILL NOT receive any review or updates from the Ubuntu security
|
||||
## team.
|
||||
# deb ${USERMIRROR} $STE universe
|
||||
# deb-src ${SRCMIRROR} $STE universe
|
||||
# deb ${USERMIRROR} ${STE}-updates universe
|
||||
# deb-src ${USERMIRROR} ${STE}-updates universe
|
||||
# deb ${USERMIRROR} ${STE}-security universe
|
||||
# deb-src ${USERMIRROR} ${STE}-security universe
|
||||
## multiverse WILL NOT receive any review or updates from the Ubuntu
|
||||
## security team.
|
||||
${COMMENT}deb ${USERMIRROR} $STE multiverse
|
||||
${COMMENT}deb-src ${SRCMIRROR} $STE multiverse
|
||||
${COMMENT}deb ${USERMIRROR} ${STE}-updates multiverse
|
||||
${COMMENT}deb-src ${SRCMIRROR} ${STE}-updates multiverse
|
||||
${COMMENT}deb ${SECMIRROR} ${STE}-security multiverse
|
||||
${COMMENT}deb-src ${SECSRCMIRROR} ${STE}-security multiverse
|
||||
@@EOF
|
||||
mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user