mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-07 17:02:30 +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.
|
* 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
|
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
|
# Depends: debootstrap, rsync, python-minimal|python, procps, squashfs-tools
|
||||||
|
|
||||||
cleanup() {
|
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
|
umount $mnt || true
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -73,7 +75,7 @@ select_mirror () {
|
|||||||
case $ARCH in
|
case $ARCH in
|
||||||
i386|amd64)
|
i386|amd64)
|
||||||
case $FS in
|
case $FS in
|
||||||
ubuntu-lpia)
|
ubuntu-lpia|ubuntu-mid)
|
||||||
USERMIRROR=http://ports.ubuntu.com/ubuntu-ports
|
USERMIRROR=http://ports.ubuntu.com/ubuntu-ports
|
||||||
SECMIRROR=${USERMIRROR}
|
SECMIRROR=${USERMIRROR}
|
||||||
SECSRCMIRROR=${SRCMIRROR}
|
SECSRCMIRROR=${SRCMIRROR}
|
||||||
@ -139,7 +141,7 @@ fi
|
|||||||
|
|
||||||
for arg in "$@"; do
|
for arg in "$@"; do
|
||||||
case "$arg" in
|
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;
|
echo bad name >&2;
|
||||||
@ -152,7 +154,6 @@ ROOT=$(pwd)/chroot-livecd/ # trailing / is CRITICAL
|
|||||||
for FS in "$@"; do
|
for FS in "$@"; do
|
||||||
FSS="$FS${SUBARCH:+-$SUBARCH}"
|
FSS="$FS${SUBARCH:+-$SUBARCH}"
|
||||||
IMG=livecd.${FSS}.fsimg
|
IMG=livecd.${FSS}.fsimg
|
||||||
MOUNTS="${ROOT}dev/pts ${ROOT}dev/shm ${ROOT}.dev ${ROOT}dev ${ROOT}proc ${ROOT}sys"
|
|
||||||
DEV=""
|
DEV=""
|
||||||
COMP="main restricted"
|
COMP="main restricted"
|
||||||
|
|
||||||
@ -173,34 +174,44 @@ Flags: seen
|
|||||||
case "$FS" in
|
case "$FS" in
|
||||||
ubuntu|ubuntu-lpia|ubuntu-dvd)
|
ubuntu|ubuntu-lpia|ubuntu-dvd)
|
||||||
LIST="$LIST minimal^ standard^ ubuntu-desktop^"
|
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)
|
kubuntu|kubuntu-dvd)
|
||||||
LIST="$LIST minimal^ standard^ kubuntu-desktop^"
|
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)
|
kubuntu-kde4)
|
||||||
LIST="$LIST minimal^ standard^ kubuntu-kde4-desktop^"
|
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"
|
COMP="main restricted universe multiverse"
|
||||||
;;
|
;;
|
||||||
edubuntu|edubuntu-dvd)
|
edubuntu|edubuntu-dvd)
|
||||||
LIST="$LIST minimal^ standard^ edubuntu-desktop^"
|
LIST="$LIST minimal^ standard^ edubuntu-desktop^"
|
||||||
LIVELIST="edubuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
LIVELIST="edubuntu-live^ laptop-detect casper lupin-casper"
|
||||||
;;
|
;;
|
||||||
xubuntu)
|
xubuntu)
|
||||||
LIST="$LIST minimal^ standard^ xterm libgoffice-gtk-0-6 xubuntu-desktop^"
|
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"
|
COMP="main restricted universe multiverse"
|
||||||
;;
|
;;
|
||||||
gobuntu)
|
gobuntu)
|
||||||
LIST="$LIST minimal^ standard^ gobuntu-desktop^"
|
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"
|
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)
|
mythbuntu)
|
||||||
LIST="$LIST minimal^ standard^ mythbuntu-desktop"
|
LIST="$LIST minimal^ standard^ mythbuntu-desktop^"
|
||||||
LIVELIST="mythbuntu-live^ xresprobe laptop-detect casper lupin-casper"
|
LIVELIST="mythbuntu-live^ laptop-detect casper lupin-casper"
|
||||||
COMP="main restricted universe multiverse"
|
COMP="main restricted universe multiverse"
|
||||||
;;
|
;;
|
||||||
base)
|
base)
|
||||||
@ -234,6 +245,12 @@ Flags: seen
|
|||||||
case "$FS" in
|
case "$FS" in
|
||||||
*-dvd)
|
*-dvd)
|
||||||
LIVELIST="$LIVELIST ${FS}-live^"
|
LIVELIST="$LIVELIST ${FS}-live^"
|
||||||
|
UNIVERSE=1
|
||||||
|
MULTIVERSE=1
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
UNIVERSE=
|
||||||
|
MULTIVERSE=
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
@ -309,6 +326,19 @@ link_in_boot = $link_in_boot
|
|||||||
*) echo "Unknown architecture: no kernel."; exit 1;;
|
*) echo "Unknown architecture: no kernel."; exit 1;;
|
||||||
esac
|
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
|
for x in $EXCLUDE; do
|
||||||
LIST="$(without_package "$x" "$LIST")"
|
LIST="$(without_package "$x" "$LIST")"
|
||||||
done
|
done
|
||||||
@ -395,21 +425,47 @@ deb-src ${SECSRCMIRROR} ${STE}-security ${COMP}
|
|||||||
## Major bug fix updates produced after the final release of the
|
## Major bug fix updates produced after the final release of the
|
||||||
## distribution.
|
## distribution.
|
||||||
deb ${USERMIRROR} ${STE}-updates ${COMP}
|
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'
|
## Uncomment the following two lines to add software from the 'universe'
|
||||||
## repository.
|
## 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
|
## 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
|
## 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
|
## your rights to use the software. Also, please note that software in
|
||||||
## universe WILL NOT receive any review or updates from the Ubuntu security
|
## multiverse WILL NOT receive any review or updates from the Ubuntu
|
||||||
## team.
|
## security team.
|
||||||
# deb ${USERMIRROR} $STE universe
|
${COMMENT}deb ${USERMIRROR} $STE multiverse
|
||||||
# deb-src ${SRCMIRROR} $STE universe
|
${COMMENT}deb-src ${SRCMIRROR} $STE multiverse
|
||||||
# deb ${USERMIRROR} ${STE}-updates universe
|
${COMMENT}deb ${USERMIRROR} ${STE}-updates multiverse
|
||||||
# deb-src ${USERMIRROR} ${STE}-updates universe
|
${COMMENT}deb-src ${SRCMIRROR} ${STE}-updates multiverse
|
||||||
# deb ${USERMIRROR} ${STE}-security universe
|
${COMMENT}deb ${SECMIRROR} ${STE}-security multiverse
|
||||||
# deb-src ${USERMIRROR} ${STE}-security universe
|
${COMMENT}deb-src ${SECSRCMIRROR} ${STE}-security multiverse
|
||||||
@@EOF
|
@@EOF
|
||||||
mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg
|
mv ${ROOT}etc/apt/trusted.gpg.$$ ${ROOT}etc/apt/trusted.gpg
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user