Roland Clobus
f460533ca1
Updated URL in the LB_ISO_PREPARER field.
2019-04-17 21:27:04 +02:00
Roland Clobus
599ef4892e
Updated URL for po4a.
2019-04-17 21:06:58 +02:00
Roland Clobus
4503eddbed
Updated URL to the manual.
2019-04-17 21:03:23 +02:00
Roland Clobus
d8eb2d4d1b
Updated homepage URL.
2019-04-17 21:00:02 +02:00
Matthijs Kooijman
3227d34966
Remove --templates from lb_config manpage
...
This option was removed in commit 7e633e77f
(Moving grub and grub2
templates into shared bootloader config directory.), but the
documentation stayed around.
2019-04-16 17:25:12 +02:00
Adrian Gibanel Lopez
80aa5ab611
Fixed foreign architecture package support to linux kernel flavours
...
Before Stretch there was an special amd64 kernel in the i386 arch repo.
So if you wanted to install an amd64 kernel alongside an i386 system
you did not need an additional arch repo.
Debian added multiarch support. That way you can install library packages
from multiple architectures on the same machine.
So there is no longer a need for having an amd64 kernel in i386 arch repo.
You can add an amd64 arch repo to an i386 arch system and fetch the amd64
kernel from the am64 arch repo.
live-build can be setup to use several linux kernel flavours in a single
image.
So in the days previous to this patch you could issue:
lb config --linux-flavours "486 amd64"
to use both 486 and amd64 kernel flavours.
Adding additional arch support to linux flavours poses two problems:
* Packages need to have its arch suffix (e.g. amd64:amd64).
If the suffix is not there apt-get insists on search amd64 kernel
package on i386 arch repo and, of course, fails to find it.
* The rest of the code which handles labels (bootloader config files)
or installed filenames (kernel images themselves) do not use the arch suffix.
This patch adds foreign architecture package support to
linux kernel flavours having taken those problems into account.
Practical example usage: i386 system and extra amd64 kernel.
First add amd64 foreign architecture in your i386 system
thanks to:
dpkg --add-architecture amd64
apt-get update
.
Finally enable amd64 kernel from amd64 arch alongside the
i386 system's 686 kernel thanks to:
lb config --architectures i386 --linux-flavours "686 amd64:amd64"
2019-03-14 23:06:31 +01:00
Luca Boccassi
46c9596926
Add options to build ONIE images
...
Open Network Install Environment is an open image format used by
networking vendor to ship a standardised image for networking white
box switches.
ONIE hardware takes this image at boot and a script to chain load
into the final environment via kexec. We can support Debian and
derivatives on such systems by packing an ISO which then gets
unpacked, kexec'ed and live-booted.
A base ONIE system can be tested in QEMU by building a VM following
these instrunctions:
https://github.com/opencomputeproject/onie/blob/master/machine/kvm_x86_64/INSTALL
Once built, boot onie-recovery-x86_64-kvm_x86_64-r0.iso in QEMU/libvirt
and on the console there will be the terminal prompt. Check the IP
assigned by libvirt and then scp the live image (ssh access is enabled
as root without password...). Then the .bin can be booted with:
ONIE-RECOVERY:/ # onie-nos-install /tmp/live.hybrid.iso-ONIE.bin
The implementation is inspired by ONIE's own scripts that can be found
at:
https://github.com/opencomputeproject/onie/blob/master/contrib/debian-iso/cook-bits.sh
A new option, --onie (false by default) can be set to true to enable
building this new format in addition to an ISO.
An additional option, --onie-kernel-cmdline can be used to specify
additional options that the ONIE system should use when kexec'ing the
final image.
Note that only iso or hybrid-iso formats are supported.
For more information about the ONIE ecosystem see:
http://onie.org
Signed-off-by: Erik Ziegenbalg <eziegenb@Brocade.com>
Signed-off-by: Luca Boccassi <bluca@debian.org>
2018-03-22 16:14:01 +00:00
Luca Boccassi
035518ff69
UEFI: add support for Secure Boot on amd64 and arm64
...
Support for UEFI Secure Boot is modelled after how it currently works
in Ubuntu and on how it is going to work on Debian.
A minimal bootloader, shim, is used as the first-stage and it then
loads grub. Both have to be signed.
shim-signed is already available in Debian so the filenames are
already established, and the grub2 repository and packaging is common
between the 2 distros so we can already be reasonably sure of what it
is going to be.
So if both are available, copy /usr/lib/shim/shim[x64|aa64].efi.signed
as boot[x64|aa64].efi so that UEFI loads it first, and copy
/usr/lib/grub/[x86_64|arm64]-efi-signed/grub[x64|aa64].efi.signed as
grub[x64|aa64].efi.
This grub2 EFI monolithic image is currently hard-coded in grub2's
repository to look for a config file in efi/debian, so make a copy
of the previously added minimal grub.cfg that loads the real one in
that directory in both the fat32 and ISO 9660 partitions.
The new option --uefi-secure-boot can be set to auto (default,
enable or disable.
In auto, the lack of the signed EFI binaries is intentionally left as a
soft failure - live-build will simply fallback to using the locally
generated non-signed grub2 monolithic EFI binary as the only
bootloader. Given the difficulties surrounding the Secure Boot
signing infrastructure this approach gives the most flexibility and
makes sure things will "just work" once the packages are available,
without the need to change anything in the configuration.
This will also greatly help downstream distributions and users who
want to do self-signing.
The enable or disable options work as expected.
Closes : #821084
2018-03-09 20:57:54 +00:00
Raphaël Hertzog
1f1dce740e
Use $SOURCE_DATE_EPOCH when updating timestamps of manual pages
...
This makes the package reproducible at build time.
Closes : #879169
2017-11-20 22:04:35 +01:00
Raphaël Hertzog
37840d9cb2
Fix version strings in manual pages
2017-08-29 15:07:32 +02:00
Raphaël Hertzog
c5a334deb8
Update PREPARER data for consistency
2017-08-29 15:06:35 +02:00
Raphaël Hertzog
3f909bf486
Drop all references to live-systems.org and update copyright file
...
Also fix the version string in the manual pages.
Closes : #859290
2017-08-29 14:12:33 +02:00
Raphaël Hertzog
10a5580c3a
Fix english mistakes in lb_config(1)
2016-12-16 10:03:45 +01:00
Raphaël Hertzog
75aa6dec5b
Minor updates to lb_config and its manual page
...
* Update the manual page with the missiong --bootappend-live-failsafe
option.
* Keep supporting the former --bootloader (without s).
2016-12-16 10:00:36 +01:00
Raphaël Hertzog
53eab12a24
Fix lintian warning about bad whatis entry
2016-11-28 23:23:24 +01:00
Raphaël Hertzog
d8ca2041ad
Get rid of useless bootstrap_archive-keys script
...
Closes : #773775
2016-11-28 21:36:57 +01:00
Raphaël Hertzog
2ea1329746
Drop left-over translation files for removed lb_testroot command.
2016-11-28 20:58:19 +01:00
Raphaël Hertzog
6c6f34d92d
Manual pages updates
...
Thanks to jnqnfe for the patch.
Closes : #774730
2016-11-28 20:58:19 +01:00
Raphaël Hertzog
164f23368e
Support “lb config --debootstrap-script <script>”
...
This option lets you use an alternate bootstrap script when running
debootstrap. Thanks to Sjoerd Simons <sjoerd@debian.org> for the initial
patch.
Closes : #790033
2016-11-28 20:58:19 +01:00
Adrian Gibanel Lopez
7becd08e4d
Added EFI support by the means of grub-efi
...
This work is based on debian-cd team work and uses,
as much as possible, the same mkisofs options
than the Debian Installation CD disk does.
It assumes that /boot/grub/grub.cfg (and other design items)
is generated by: binary_loopback_cfg .
It relies on efi-image and grub-cpmodules being setup
as build scripts on live-build package.
In the future event of these two files being moved
to a binary package (they are originally from:
src: live-installer) the binary_grub-efi script would have
to be rewritten to take the new paths into account.
2016-07-31 15:09:13 +02:00
Ben Armstrong
1f8975cc60
Remove 586 flavour for i386 architecture. ( Closes : #807972 )
2015-12-15 14:01:29 +00:00
trebmuh
89040368a8
[l10n] Update French translation for manpages.
2015-12-15 14:00:26 +00:00
Carlos Zuferri
90a4410cf9
Using 'Live Systems Project' as default project in .pot files.
2015-12-15 14:00:25 +00:00
Daniel Baumann
4789428101
Releasing debian version 5.0~a11-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-08-23 10:58:02 +02:00
Daniel Baumann
44ab759038
Releasing debian version 5.0~a10-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-08-10 19:36:25 +02:00
Daniel Baumann
06fb96a10c
Releasing debian version 5.0~a9-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-06-06 06:40:39 +02:00
Daniel Baumann
3c303e7f53
Releasing debian version 5.0~a8-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-05-19 06:27:05 +02:00
Daniel Baumann
66d8b61303
Releasing debian version 5.0~a7-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-05-14 13:16:48 +02:00
Daniel Baumann
9280926b11
Switching from http.debian.net to httpredir.debian.org as default binary mirror.
2015-05-10 19:10:28 +02:00
Daniel Baumann
ffb463f775
Releasing debian version 5.0~a6-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-05-04 20:04:23 +02:00
Daniel Baumann
7f6b1d71f8
Releasing debian version 5.0~a5-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-04-28 07:58:18 +02:00
Daniel Baumann
9c51918b3b
Releasing debian version 5.0~a4-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-04-26 20:21:09 +02:00
victory
994b335f53
Unfuzzy Japanese translation.
2015-04-09 05:23:27 +09:00
Daniel Baumann
ba53a1f948
Releasing debian version 5.0~a3-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2015-02-07 06:57:48 +01:00
Daniel Baumann
e51315ae1e
Switching to default to linux-image-586 on i386.
2015-01-26 06:30:49 +01:00
Daniel Baumann
242aef5d83
Updating year in copyright notices to 2015.
2015-01-04 20:05:44 +01:00
Daniel Baumann
b814f4e07e
Dropping cdebootstrap support ( Closes : #773657 ).
...
debootstrap is the official tool to bootstrap debian,
cdebootstrap has had the one or other bug making it
broken for times during the release cycles.
The extra effort of supporting both debootstrap
and cdebootstrap is hardly worth it since the bootstrap
stage is cached anyway.
2014-12-23 22:54:41 +01:00
Daniel Baumann
2841d696c0
Releasing debian version 5.0~a1-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2014-12-10 08:39:45 +01:00
Daniel Baumann
a767601f25
Releasing debian version 4.0.4-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2014-12-10 08:24:49 +01:00
jnqnfe
ef9b1e8487
Fix missing grub2 option in bootloader selection ( Closes : #772671 ).
2014-12-10 07:51:50 +01:00
Daniel Baumann
a157fbb361
Releasing debian version 4.0.3-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2014-10-25 14:39:17 +02:00
Daniel Baumann
afef2c271e
Releasing debian version 4.0.2-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2014-09-12 13:42:57 +02:00
Daniel Baumann
9c3b8eb08a
Dropping incomplete German manpage translations.
2014-09-09 21:01:54 +02:00
Daniel Baumann
cfaa08dfd2
Making check target in manpages makefile comply with the rest.
2014-09-09 21:01:53 +02:00
victory
75ba99dd27
Add Japanese translations.
2014-09-09 21:00:53 +02:00
victory
c736a9743d
Fix typos in lb_config.1.
2014-09-09 21:00:49 +02:00
Daniel Baumann
b1ce772ab7
Releasing debian version 4.0.1-1.
...
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
2014-08-28 23:26:04 +02:00
Daniel Baumann
c1d85328f8
Restoring old manpages since we're back to the non-python implementation ( Closes : #745134 ).
2014-08-28 01:01:31 +02:00
Daniel Baumann
5c16b340e5
Releasing debian version 4.0~alpha39-1.
2014-07-24 05:06:08 +02:00
Daniel Baumann
802741f84a
Releasing debian version 4.0~alpha38-1.
2014-06-25 21:08:54 +02:00
Carlos Zuferri
6f8f7f96d2
Adding '--package-version' to po4a options.
2014-05-26 21:25:13 +02:00
Carlos Zuferri
446190515c
Adding .po integrity check target to manpages/Makefile.
2014-05-25 14:35:55 +02:00
Daniel Baumann
9cbb6865c1
Releasing debian version 4.0~alpha37-1.
2014-05-07 07:01:54 +02:00
Daniel Baumann
4b5d831313
Releasing debian version 4.0~alpha36-1.
2014-04-28 19:51:41 +02:00
Daniel Baumann
eca7aca936
Releasing debian version 4.0~alpha34-1.
2014-04-26 08:05:32 +02:00
Daniel Baumann
145418141e
Releasing debian version 4.0~alpha33-1.
2014-03-31 21:48:33 +02:00
Daniel Baumann
a816109ad7
Releasing debian version 4.0~alpha32-1.
2014-03-02 06:24:45 +01:00
Daniel Baumann
eb336bb782
Updating copyright notices for 2014.
2014-02-08 17:47:24 +01:00
Daniel Baumann
fde942d3bd
Releasing debian version 4.0~alpha31-1.
2014-01-07 21:16:23 +01:00
Daniel Baumann
30d2c54194
Pre-emptively removing occurances of the short name of the Debian derivative from Canonical that cannot be named.
2013-11-10 09:33:47 +01:00
Daniel Baumann
d28d053e8c
Unfuzzing German translation of lb-binary-hooks.1
2013-11-06 21:03:32 +01:00
chals
5f7833878b
Unfuzzying dates in the German translation of the manpages.
2013-11-06 10:40:27 +01:00
chals
f2e31782d9
Unfuzzying dates in the Spanish translation.
2013-11-06 10:36:46 +01:00
chals
02c54df1b3
Updating, again, lb-bootstrap-debootstrap manpage, Spanish translation.
2013-11-06 10:33:56 +01:00
chals
2bb3744c42
Translating lb-source-hooks manpage into Spanish.
2013-11-06 10:13:04 +01:00
chals
4e95fffcd0
Translating lb-init manpage into Spanish.
2013-11-06 10:01:25 +01:00
chals
78543ac233
Updating Spanish translation of lb-chroot-hooks manpage.
2013-11-06 09:51:58 +01:00
chals
8cfc3a0713
Updating Spanish translation of lb-bootstrap-hooks manpage.
2013-11-06 09:43:54 +01:00
chals
a8020e26e2
Updating Spanish translation of lb-bootstrap-debootstrap manpage.
2013-11-06 09:17:36 +01:00
chals
22932c7e52
Updating Spanish translation of lb-bootstrap-cdebootstrap manpage.
2013-11-06 09:15:06 +01:00
chals
5b87f05ab9
Updating dates in manpages.
2013-11-06 09:10:53 +01:00
chals
9f37451f92
Translating lb-source-includes.1 manpage into Spanish.
2013-11-05 21:01:26 +01:00
chals
708256bad6
Fixing copy and paste error in lb-bootstrap-includes.es.1 manpage, Spanish translation.
2013-11-05 20:43:58 +01:00
chals
d293243d6b
Translating lb-chroot-includes.1 manpage into Spanish.
2013-11-05 20:38:50 +01:00
chals
7f56be1bc6
Translating lb-bootstrap-includes.1 manpage into Spanish.
2013-11-05 20:28:33 +01:00
chals
538ce51a1a
Translating lb-binary-includes.1 manpage into Spanish.
2013-11-05 20:16:24 +01:00
chals
f5523f59f8
Updating small bits in several .po files, Spanish translation.
2013-11-05 19:38:20 +01:00
chals
20bd2904a5
Translating lb-binary-hooks.1 into Spanish.
2013-11-05 19:33:23 +01:00
chals
7a6a9cd732
Fixing typo in lb-binary-hooks.1 manpage.
2013-11-05 19:24:09 +01:00
chals
b1470f5fe5
Removing obsolete po4a flag 'no-backups' from manpages/Makefile.
2013-11-05 19:22:19 +01:00
Daniel Baumann
8245c7d0fc
Adding --distribution to lb-init.
2013-11-05 12:20:17 +01:00
Daniel Baumann
3a3a4bbfc9
Adding lb-init manpage.
2013-11-05 12:20:16 +01:00
Daniel Baumann
2e77f83d83
Releasing debian version 4.0~alpha30-1.
2013-11-04 19:10:13 +01:00
Daniel Baumann
6254718202
Adding lb-bootstrap-includes manpage.
2013-11-04 19:04:49 +01:00
Daniel Baumann
3dbe0430d9
Adding lb-source-includes manpage.
2013-11-04 18:55:15 +01:00
Daniel Baumann
3ad37ba9f8
Adding lb-binary-includes manpage.
2013-11-04 18:41:36 +01:00
Daniel Baumann
6115270556
Adding lb-chroot-includes manpage.
2013-11-04 18:25:13 +01:00
Daniel Baumann
9e3863aa8f
Switching to later submodule naming scheme for python stubs.
2013-11-04 17:10:22 +01:00
Daniel Baumann
f3fe376f61
Removing wrong reference to config/build in lb_*_hooks manpages.
2013-11-04 16:42:40 +01:00
Daniel Baumann
600e715703
Correcting spelling typo in manpages (s/hoooks/hooks/).
2013-11-04 12:45:10 +01:00
Daniel Baumann
ef20722290
Harmonizing options markup in manpages.
2013-11-04 12:42:28 +01:00
Daniel Baumann
35dbb107d0
Adding program specification to lb_bootstrap_hooks manpage.
2013-11-04 12:37:33 +01:00
Daniel Baumann
e5c72654ec
Adding program specification to lb_chroot_hooks manpage.
2013-11-04 12:33:12 +01:00
Daniel Baumann
f5b825ee3c
Adding program specification to lb_source_hooks manpage.
2013-11-04 12:26:39 +01:00
Daniel Baumann
e00df1684b
Adding program specification to lb_binary_hooks manpage.
2013-11-04 12:21:32 +01:00
Daniel Baumann
55e32d6c06
Releasing debian version 4.0~alpha29-1.
2013-11-04 07:40:05 +01:00
Daniel Baumann
afafe4628c
Adding see also entries in hooks manpages.
2013-11-04 06:57:57 +01:00
Daniel Baumann
3077d77a56
Adding lb_source_hooks manpage.
2013-11-04 06:47:04 +01:00
Daniel Baumann
d042538e28
Adding lb_binary_hooks manpage.
2013-11-04 06:42:19 +01:00
Daniel Baumann
12a20871ed
Adding lb_chroot_hooks manpage.
2013-11-03 21:01:43 +01:00
Daniel Baumann
8295826a6b
Adding lb_bootstrap_hooks manpage.
2013-11-03 20:51:13 +01:00
Daniel Baumann
c9cd3af6ec
Making various things in bootstrap manpages more consistent.
2013-11-03 19:48:37 +01:00
Daniel Baumann
9ef33d083b
Releasing debian version 4.0~alpha28-1.
2013-10-28 08:36:09 +01:00
Daniel Baumann
955175ac4b
Dropping incomplete and not really supported exposed root mode.
...
This might come back in future if there's demand for it
and the base is sufficiently cleaned up first.
2013-10-23 10:47:48 +02:00
Daniel Baumann
be1dfb1b0b
Releasing debian version 4.0~alpha27-1.
2013-10-18 09:49:35 +02:00
Daniel Baumann
d07cb888ee
Updating German manpage translations.
2013-10-17 11:18:55 +02:00
Daniel Baumann
1a6303611b
Releasing debian version 4.0~alpha26-1.
2013-09-19 09:10:20 +02:00
Daniel Baumann
3b332c3788
Releasing debian version 4.0~alpha25-1.
2013-09-18 10:27:15 +02:00
Daniel Baumann
f880117b97
Releasing debian version 4.0~a24-1.
2013-09-06 20:05:53 +02:00
Daniel Baumann
0293f5d14c
Releasing debian version 4.0~a23-1.
2013-09-06 18:30:20 +02:00
Daniel Baumann
7ca77d248b
Releasing debian version 4.0~a22-1.
2013-09-05 17:31:39 +02:00
Daniel Baumann
89cf1cf609
Releasing debian version 4.0~a21-1.
2013-08-07 20:06:47 +02:00
Daniel Baumann
613f8cfd6d
Dropping global archive definitions shipped in /usr/share/live/build/archives (same as with packagelists, hidden archive 'magic' is gone now in favour of explicit config tree configuration).
2013-06-25 09:12:03 +02:00
Daniel Baumann
921870160d
Releasing debian version 4.0~a20-1.
2013-06-19 08:02:54 +02:00
Daniel Baumann
9008de3f0b
Releasing debian version 4.0~a19-1.
2013-05-27 17:07:14 +02:00
Daniel Baumann
1c5c1441e0
Releasing debian version 4.0~a18-1.
2013-05-06 20:10:14 +02:00
Daniel Baumann
ac29b32470
Releasing debian version 4.0~a17-1.
2013-05-06 14:50:08 +02:00
chals
f9f13cb60e
Adding initial Spanish translation of two man pages.
2013-05-06 14:50:08 +02:00
Daniel Baumann
d5cc7dc428
Adding files section in bootstrap_debootstrap and bootstrap_cdebootstrap manpages.
2013-05-06 14:50:08 +02:00
Daniel Baumann
61e5e53eef
Adding initial German translation for bootstrap_cdebootstrap manpage.
2013-05-06 14:50:08 +02:00
Daniel Baumann
9f32f7af78
Adding new lb_bootstrap_cdebootstrap manpage.
2013-05-06 14:50:08 +02:00
Daniel Baumann
cd4119caf0
Adding initial German translation for bootstrap_debootstrap manpage.
2013-05-06 14:50:08 +02:00
Daniel Baumann
b5317e34a9
Adding new lb_bootstrap_debootstrap manpage.
2013-05-06 14:50:08 +02:00
Daniel Baumann
82648922d5
Moving old manpages out of the way.
2013-05-06 14:50:07 +02:00
Daniel Baumann
765ae792d4
Releasing debian version 4.0~a16-1.
2013-05-06 14:50:07 +02:00
Daniel Baumann
a00211e9c6
Removing dedicated emdebian mode, this can entirely be handled with different defaults.
2013-05-06 14:50:07 +02:00
Daniel Baumann
c287072126
Debranding package for derivatives.
2013-05-06 14:50:07 +02:00
Daniel Baumann
6ce319f16d
Releasing debian version 4.0~a15-1.
2013-05-06 14:50:06 +02:00
Daniel Baumann
59ce459f40
Removing all references to my old email address.
2013-05-06 14:50:06 +02:00
Daniel Baumann
29043c34fe
Releasing debian version 4.0~a14-1.
2013-05-06 14:50:06 +02:00
Daniel Baumann
c1a7b496bf
Correcting spelling typos, thanks to Adam D. Barratt <adam@adam-barratt.org.uk>.
2013-05-06 14:50:06 +02:00
Daniel Baumann
c4b7263f13
Releasing debian version 4.0~a13-1.
2013-05-06 14:50:06 +02:00
Daniel Baumann
cca7563257
Removing non-existent --apt-indices none references.
2013-05-06 14:50:06 +02:00
Daniel Baumann
7c945b05f5
Releasing debian version 4.0~a12-1.
2013-05-06 14:50:06 +02:00
Daniel Baumann
dbfe7b10d7
Removing incomplete support for fakeroot.
2013-05-06 14:50:06 +02:00
Daniel Baumann
04cec317cc
Removing incomplete support for root-command.
2013-05-06 14:50:06 +02:00
Daniel Baumann
705df48ec5
Releasing debian version 4.0~a11-1.
2013-05-06 14:50:05 +02:00
Daniel Baumann
137c224579
Dropping powerpc bootloader support (yaboot), there is nobody actively maintaining this in live-build.
2013-05-06 14:50:05 +02:00
Daniel Baumann
3e23aaacde
Dropping sparc bootloader support (silo), there is nobody actively maintaining this in live-build.
2013-05-06 14:50:05 +02:00
Daniel Baumann
c6c9946048
Releasing debian version 4.0~a10-1.
2013-05-06 14:50:05 +02:00
Daniel Baumann
cbc4d9f736
Releasing debian version 4.0~a9-1.
2013-05-06 14:50:05 +02:00
Daniel Baumann
f7789205d7
Removing dropped syslinux-theme config option from lb_config manpage.
2013-05-06 14:50:05 +02:00
Daniel Baumann
9886b1b433
Releasing debian version 4.0~a8-1.
2013-05-06 14:50:04 +02:00
Daniel Baumann
7fa85c4ac2
Removing reference to removed --package-lists option in lb_config manpage ( Closes : #698260 ).
2013-05-06 14:50:04 +02:00
Daniel Baumann
26bbf6e683
Updating manpage year handling for 2013.
2013-05-06 14:50:04 +02:00
Daniel Baumann
d8b0ca36fe
Releasing debian version 4.0~a7-1.
2013-05-06 14:50:04 +02:00
Daniel Baumann
c2531a1a51
Releasing debian version 4.0~a6-1.
2013-05-06 14:50:03 +02:00
Daniel Baumann
f67a2aa42e
Releasing debian version 4.0~a5-1.
2013-05-06 14:50:03 +02:00
Daniel Baumann
5e07604353
Removing kubuntu mode, it's not different anymore to standard ubuntu mode.
2013-05-06 14:50:02 +02:00
Daniel Baumann
1226704fff
Releasing debian version 4.0~a4-1.
2013-05-06 14:50:02 +02:00
Daniel Baumann
0d7322500b
Switching from genisoimage to xorriso.
2013-05-06 14:50:02 +02:00
Daniel Baumann
aa2225cf6a
Releasing debian version 4.0~a3-1.
2013-05-06 14:50:02 +02:00
Daniel Baumann
bc11607eb0
Releasing debian version 4.0~a2-1.
2013-05-06 14:50:01 +02:00
Daniel Baumann
d1047e809a
Adding debian version 4.0~a1-1.
2013-05-06 14:48:46 +02:00
Daniel Baumann
160d6bade7
Releasing debian version 3.0.5-1.
2013-04-30 10:26:25 +02:00
Daniel Baumann
b7ce440b3b
Releasing debian version 3.0.4-1.
2013-04-29 12:54:19 +02:00
Daniel Baumann
70bb553f2b
Releasing debian version 3.0.3-1.
2013-04-25 17:39:44 +02:00
Daniel Baumann
b19795614f
Releasing debian version 3.0.2-1.
2013-04-25 12:42:42 +02:00
Daniel Baumann
c366502ec1
Correcting spelling typos, thanks to Adam D. Barratt <adam@adam-barratt.org.uk>.
2013-04-09 05:52:09 +02:00
Daniel Baumann
ab3d2eae25
Removing non-existent --apt-indices none references.
2013-04-09 05:40:12 +02:00
Daniel Baumann
bb69c170ae
Releasing debian version 3.0.1-1.
2013-02-14 19:31:36 +01:00
Daniel Baumann
35d6dbda83
Dropping German manpage translations stubs for the release.
2013-02-14 19:22:55 +01:00
Daniel Baumann
49e1810ecd
Releasing debian version 3.0.0-1.
2013-02-09 00:18:28 +01:00
Daniel Baumann
30109cf530
Removing dropped syslinux-theme config option from lb_config manpage.
2013-02-09 00:15:32 +01:00
Daniel Baumann
02bc99517f
Releasing debian version 3.0~b6-1.
2013-01-20 10:18:08 +01:00
Daniel Baumann
ebb6fd8874
Removing reference to removed --package-lists option in lb_config manpage ( Closes : #698260 ).
2013-01-16 07:48:21 +01:00
Daniel Baumann
7c98f332f6
Updating manpage year handling for 2013.
2013-01-02 12:58:03 +01:00
Daniel Baumann
cfc99ce105
Releasing debian version 3.0~b5-1.
2013-01-02 11:45:42 +01:00
Daniel Baumann
8541893e7c
Releasing debian version 3.0~b4-1.
2012-12-23 10:50:53 +01:00
Daniel Baumann
1574964a24
Releasing debian version 3.0~b3-1.
2012-12-17 20:30:06 +01:00
Daniel Baumann
7e8240cd5e
Removing kubuntu mode, it's not different anymore to standard ubuntu mode.
2012-12-17 13:51:44 +01:00
Daniel Baumann
654c867490
Releasing debian version 3.0~b2-1.
2012-12-16 21:57:52 +01:00
Daniel Baumann
bae505eb97
Switching from genisoimage to xorriso.
2012-12-16 21:41:42 +01:00
Daniel Baumann
55eb6494dd
Releasing debian version 3.0~b1-1.
2012-12-10 20:39:08 +01:00
Daniel Baumann
33118cc3f3
Releasing debian version 3.0~a69-1.
2012-12-06 21:09:25 +01:00
Daniel Baumann
d306246697
Releasing debian version 3.0~a68-1.
2012-11-30 15:10:13 +01:00
Daniel Baumann
7b2b860d72
Releasing debian version 3.0~a67-1.
2012-11-02 12:29:08 +01:00
Daniel Baumann
4f710bc3c4
Removing debconf-nowarnings option, doesn't provide any advantage to disable this option in the first place.
2012-10-31 09:26:25 +01:00
Daniel Baumann
2caef33ea2
Renaming progress mode to progress-linux to match the used naming scheme.
2012-10-25 13:36:18 +02:00
Daniel Baumann
175f6d4bdc
Releasing debian version 3.0~a66-1.
2012-10-22 20:45:11 +02:00
Daniel Baumann
a35277259c
Releasing debian version 3.0~a65-1.
2012-10-08 20:47:10 +02:00
Daniel Baumann
bf918b8584
Releasing debian version 3.0~a64-1.
2012-10-05 09:23:53 +02:00
Daniel Baumann
80f3c62290
Removing unsupported and unsupportable bootstrap_copy.
2012-10-03 13:46:22 +02:00
Daniel Baumann
3f84ba14ce
Releasing debian version 3.0~a63-1.
2012-10-02 21:24:43 +02:00
Daniel Baumann
687d2abf6c
Releasing debian version 3.0~a62-1.
2012-10-01 05:02:51 +02:00
Daniel Baumann
f735d984cf
Releasing debian version 3.0~a61-1.
2012-09-30 09:47:22 +02:00
Daniel Baumann
8cd449e67c
Releasing debian version 3.0~a60-1.
2012-09-29 14:08:52 +02:00
Daniel Baumann
3e72045807
Removing virtual-hdd image type.
...
Rather than a half broken image type, we'll bet our money on having proper
partman recipies support implemented for hdd image types.
Even if we don't make it for wheezy, it's better to not have virtual-hdd
in there and tell users to use the jessie version for proper hdd images.
2012-09-26 15:36:44 +02:00
Daniel Baumann
218094cff2
Releasing debian version 3.0~a59-1.
2012-09-26 14:48:45 +02:00
Daniel Baumann
9228a0ca66
Renaming volatile options refering to volatile archive to updates to match current archive namings.
2012-09-26 14:43:12 +02:00
Daniel Baumann
55f6d94398
Releasing debian version 3.0~a58-1.
2012-08-27 16:33:24 +02:00
Daniel Baumann
9b5fc09d0f
Removing bootstrap-keyring option.
2012-08-27 14:36:42 +02:00
Daniel Baumann
df1cea54c5
Removing bootstrap-flavour option ( Closes : #685675 ).
...
live-build does too much magic that causes too much effort in
maintaining for stuff that hardly everyone uses.
Rather than 'translating' back and forth and maintaining compatibility
between options of different debootstrap and cdebootstrap versions (and
possibly any other in the future), it's is better to 'off-load' this to
the user.
For non-live specific options passed to the bootstrap tools, we'll
be introducing --debootstrap-options and --cdebootstrap-options
where users can specify their additional options passed to the
respective bootstrap tool, rather than us maintaining them in a
'hardcoded' and selected list.
2012-08-27 14:26:11 +02:00
Daniel Baumann
fd685847ad
Moving from cdn.debian.net to http.debian.net as binary mirror.
2012-08-24 11:38:25 +02:00
Daniel Baumann
d8d5366a6c
Using /etc/live/build/*.conf instead of /etc/live/build.d/*.conf for consistency reasons.
2012-08-24 11:38:24 +02:00
Daniel Baumann
31d966cb49
Releasing debian version 3.0~a57-1.
2012-08-10 22:42:58 +02:00
Daniel Baumann
12a2f17ea7
Removing manpage stubs for second-level commands.
...
We don't have proper manpages for lb_*_* commands yet,
rather than having a useless stub for it that's just a
boilerplate and nothing more, let's remove them for now,
and add them back one by one but with full reference content.
2012-08-02 18:56:07 +02:00
Daniel Baumann
9635371d5e
Updating lb config --config manpage option to reflect that any Git Id can be specified, not just branches.
2012-08-02 18:54:03 +02:00
Daniel Baumann
b2eb7a885b
Releasing debian version 3.0~a56-1.
2012-07-30 21:56:34 +02:00
Daniel Baumann
1eabc72682
Removing chroot_local-patches, too much overhead for just applying patches (notably, with -p1 enforced), hooks are more flexible anyway.
2012-07-30 18:19:28 +02:00