mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-05-16 13:21:33 +00:00
* Handle package/task list changes in live-build 3.0~a22-1.
* Handle local sources.list changes in live-build 3.0~a22-1.
This commit is contained in:
commit
2b452c428e
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -1,3 +1,10 @@
|
|||||||
|
livecd-rootfs (2.14) UNRELEASED; urgency=low
|
||||||
|
|
||||||
|
* Handle package/task list changes in live-build 3.0~a22-1.
|
||||||
|
* Handle local sources.list changes in live-build 3.0~a22-1.
|
||||||
|
|
||||||
|
-- Colin Watson <cjwatson@ubuntu.com> Fri, 17 Jun 2011 08:24:52 +0100
|
||||||
|
|
||||||
livecd-rootfs (2.13) oneiric; urgency=low
|
livecd-rootfs (2.13) oneiric; urgency=low
|
||||||
|
|
||||||
* Didn't realize that you can pass multiple projects to BuildLiveCD.
|
* Didn't realize that you can pass multiple projects to BuildLiveCD.
|
||||||
|
@ -24,8 +24,7 @@ if [ -z "$MIRROR" ]; then
|
|||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
|
|
||||||
mkdir -p config/chroot_local-tasklists config/chroot_local-packagelists
|
mkdir -p config/task-lists config/package-lists
|
||||||
rm -f config/chroot_local-tasklists/livecd-rootfs.list config/chroot_local-packagelists/livecd-rootfs.list
|
|
||||||
|
|
||||||
add_task ()
|
add_task ()
|
||||||
{
|
{
|
||||||
@ -34,7 +33,7 @@ add_task ()
|
|||||||
local task
|
local task
|
||||||
|
|
||||||
for task; do
|
for task; do
|
||||||
echo "$task" >> "config/chroot_local-tasklists/livecd-rootfs.list.$pass"
|
echo "$task" >> "config/task-lists/livecd-rootfs.chroot_$pass.list"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -45,7 +44,7 @@ add_package ()
|
|||||||
local pkg
|
local pkg
|
||||||
|
|
||||||
for pkg; do
|
for pkg; do
|
||||||
echo "$pkg" >> "config/chroot_local-packagelists/livecd-rootfs.list.$pass"
|
echo "$pkg" >> "config/package-lists/livecd-rootfs.chroot_$pass.list"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -209,7 +208,7 @@ case $PROJECT in
|
|||||||
*-dvd)
|
*-dvd)
|
||||||
. config/bootstrap
|
. config/bootstrap
|
||||||
|
|
||||||
cat > config/chroot_sources/dvd.binary << EOF
|
cat > config/archives/dvd.binary.list << EOF
|
||||||
deb $LB_PARENT_MIRROR_BINARY $SUITE universe multiverse
|
deb $LB_PARENT_MIRROR_BINARY $SUITE universe multiverse
|
||||||
deb $LB_PARENT_MIRROR_BINARY_SECURITY $SUITE-security universe multiverse
|
deb $LB_PARENT_MIRROR_BINARY_SECURITY $SUITE-security universe multiverse
|
||||||
deb $LB_PARENT_MIRROR_BINARY_VOLATILE $SUITE-updates universe multiverse
|
deb $LB_PARENT_MIRROR_BINARY_VOLATILE $SUITE-updates universe multiverse
|
||||||
|
Loading…
x
Reference in New Issue
Block a user