Split simple-cdd/debian-cd & live-build
## Live `--live` = kali-live (previouly live-build-config) <https://gitlab.com/kalilinux/build-scripts/kali-live> Uses live-build ## Installer `--installer` = kali-installer <https://gitlab.com/kalilinux/build-scripts/kali-installer> Uses simple-cdd (which is a wrapper for debian-cd)merge-requests/18/head
parent
796bb62679
commit
2a549aa31a
@ -1,3 +1,83 @@
|
||||
# live-build configuration for Kali ISO images
|
||||
# Kali-Live Build-Scripts
|
||||
|
||||
_`live-build` configuration for Kali ISO images._
|
||||
|
||||
These are the same [build-scripts](https://gitlab.com/kalilinux/build-scripts) that the [Kali team](https://www.kali.org/) uses to generate the official Kali Linux base images, found here: [kali.org/get-kali/](https://www.kali.org/get-kali/).
|
||||
|
||||
_Build your Kali Linux image today!_
|
||||
|
||||
- - -
|
||||
|
||||
These images can be used to live boot into Kali, from such a USB/CD/DVD/sdCard, as well offers a basic installation. For more customization during setup, see [kali-installer](https://gitlab.com/kalilinux/build-scripts/kali-installer).
|
||||
|
||||
- [kali-installer](https://gitlab.com/kalilinux/build-scripts/kali-installer) uses [Simple-CDD](https://wiki.debian.org/Simple-CDD) _(which is a wrapper for [debian-cd](https://wiki.debian.org/debian-cd))_
|
||||
- [kali-live](https://gitlab.com/kalilinux/build-scripts/kali-live) uses [live-build](https://live-team.pages.debian.net/live-manual/html/live-manual/index.en.html)
|
||||
|
||||
- - -
|
||||
|
||||
Have a look at [Live Build a Custom Kali ISO](https://www.kali.org/docs/development/live-build-a-custom-kali-iso/) for explanations on how to use this repository.
|
||||
|
||||
There are also other [code examples of live-build](https://gitlab.com/kalilinux/recipes/live-build-config-examples), as well as [code examples for pre-seed to automate/unattended installation](https://gitlab.com/kalilinux/recipes/kali-preseed-examples).
|
||||
|
||||
- - -
|
||||
|
||||
## Help
|
||||
|
||||
```console
|
||||
$ ./build.sh --help
|
||||
Usage: ./build.sh [<option>...]
|
||||
|
||||
--distribution <arg>
|
||||
--proposed-updates
|
||||
--arch <arg>
|
||||
--verbose
|
||||
--debug
|
||||
--salt
|
||||
--variant <arg>
|
||||
--version <arg>
|
||||
--subdir <arg>
|
||||
--get-image-path
|
||||
--no-clean
|
||||
--clean
|
||||
--help
|
||||
|
||||
More information: https://www.kali.org/docs/development/live-build-a-custom-kali-iso/
|
||||
$
|
||||
```
|
||||
|
||||
## Usage Examples
|
||||
|
||||
Both images types, using the latest packages:
|
||||
|
||||
```console
|
||||
$ ./build.sh
|
||||
[...]
|
||||
```
|
||||
|
||||
- - -
|
||||
|
||||
Manually define which Kali mirror to pull from, as well as be more detailed in output:
|
||||
|
||||
```console
|
||||
$ echo "http://kali.download/kali" > .mirror
|
||||
$
|
||||
$ ./build.sh --verbose
|
||||
[...]
|
||||
```
|
||||
|
||||
- - -
|
||||
|
||||
Build a different Live image version (GNOME and KDE Plasma):
|
||||
|
||||
```console
|
||||
$ ./build.sh \
|
||||
--debug \
|
||||
--variant gnome
|
||||
[...]
|
||||
$
|
||||
$ ./build.sh \
|
||||
--debug \
|
||||
--variant kde
|
||||
[...]
|
||||
$
|
||||
```
|
||||
|
@ -1 +0,0 @@
|
||||
build.sh
|
@ -1,95 +0,0 @@
|
||||
#/* Installer Image (UEFI boot) */
|
||||
title-text: ""
|
||||
desktop-image: "../splash.png"
|
||||
desktop-color: "#041838"
|
||||
terminal-left: "0"
|
||||
terminal-top: "0"
|
||||
terminal-width: "100%"
|
||||
terminal-height: "100%"
|
||||
terminal-border: "0"
|
||||
|
||||
+ vbox {
|
||||
top = 80
|
||||
left = 65%
|
||||
width = 30%
|
||||
height = 100
|
||||
#ifdef MENU1
|
||||
+ hbox {
|
||||
left = 0
|
||||
+ label {text = " >" font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = MENU1 font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
}
|
||||
#endif
|
||||
#ifdef MENU2
|
||||
+ hbox {
|
||||
left = 0
|
||||
+ label {text = " >" font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = MENU2 font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
}
|
||||
#endif
|
||||
#ifdef MENU3
|
||||
+ hbox {
|
||||
left = 0
|
||||
+ label {text = " >" font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = MENU3 font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
}
|
||||
#endif
|
||||
#ifdef MENU4
|
||||
+ hbox {
|
||||
left = 0
|
||||
+ label {text = " >" font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = MENU4 font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
+ label {
|
||||
top = 31%
|
||||
left = 0
|
||||
width = 100%
|
||||
height = 35
|
||||
align = "center"
|
||||
color = "#ffffff"
|
||||
font = "Sans 16"
|
||||
text = "Kali Linux installer menu (UEFI mode)"
|
||||
}
|
||||
|
||||
+ boot_menu {
|
||||
left = 14%
|
||||
width = 73%
|
||||
top = 39%
|
||||
height = 42%
|
||||
item_color = "#f3f3f3"
|
||||
selected_item_color = "#ffffff"
|
||||
item_height = 36
|
||||
item_padding = 0
|
||||
item_spacing = 4
|
||||
icon_width = 0
|
||||
icon_height = 0
|
||||
selected_item_pixmap_style = "select_*.png"
|
||||
}
|
||||
|
||||
+ vbox {
|
||||
top = 100%-60
|
||||
left = 14%
|
||||
+ hbox {
|
||||
top = 0
|
||||
left = 20%
|
||||
+ label {text = "Enter: " font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = "Select " font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
#ifdef MENU1
|
||||
+ label {text = " " font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = "Esc: " font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = "Back up one level " font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
#endif
|
||||
}
|
||||
+ hbox {
|
||||
top = 0
|
||||
left = 20%
|
||||
+ label {text = "E: " font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = "Edit Selection " font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
+ label {text = " " font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = "C: " font = "Sans 10" color = "white" align = "left"}
|
||||
+ label {text = "GRUB Command line" font = "Sans 10" color = "#c0c0c0" align = "left"}
|
||||
}
|
||||
}
|
@ -1,23 +0,0 @@
|
||||
# Full installer image
|
||||
# It should contain everything offered in tasksel
|
||||
# during initial installation so all kali-linux-* except:
|
||||
# - kali-linux-everything
|
||||
|
||||
# Metapackages
|
||||
# You can customize the set of Kali metapackages (groups of tools) available
|
||||
# in the installer ISO.
|
||||
# For the complete list see: https://tools.kali.org/kali-metapackages
|
||||
kali-linux-firmware
|
||||
kali-linux-core
|
||||
kali-tools-top10
|
||||
kali-linux-default
|
||||
|
||||
# NOTE: We would like to provide kali-linux-large in our installer images
|
||||
# but we end up with ISO images that are too big for our CDN. So disable
|
||||
# it for now.
|
||||
# kali-linux-large
|
||||
|
||||
# Graphical desktops
|
||||
kali-desktop-xfce
|
||||
kali-desktop-gnome
|
||||
kali-desktop-kde
|
@ -1,17 +0,0 @@
|
||||
# Installer image with kali-linux-everything
|
||||
|
||||
# Metapackages
|
||||
# You can customize the set of Kali metapackages (groups of tools) available
|
||||
# in the installer ISO.
|
||||
# For the complete list see: https://tools.kali.org/kali-metapackages
|
||||
kali-linux-firmware
|
||||
kali-linux-core
|
||||
kali-tools-top10
|
||||
kali-linux-default
|
||||
kali-linux-large
|
||||
kali-linux-everything
|
||||
|
||||
# Graphical desktops
|
||||
kali-desktop-xfce
|
||||
kali-desktop-gnome
|
||||
kali-desktop-kde
|
@ -1,9 +0,0 @@
|
||||
# Network installer image
|
||||
# Mostly empty list because netinst has no embedded packages in theory
|
||||
#
|
||||
# This variant is not meant to be used with live-build but only with
|
||||
# simple-cdd and thus ./build.sh --installer --variant netinst
|
||||
|
||||
# We still put kali-linux-firmware because we want firmware to be
|
||||
# in the ISO for use by the installer
|
||||
kali-linux-firmware
|
@ -1,21 +0,0 @@
|
||||
# Installer for Kali Purple
|
||||
|
||||
# Metapackages
|
||||
# You can customize the set of Kali metapackages (groups of tools) available
|
||||
# in the installer ISO.
|
||||
# For the complete list see: https://tools.kali.org/kali-metapackages
|
||||
kali-linux-firmware
|
||||
kali-system-gui
|
||||
kali-themes-purple # temporary, until we do it a better way
|
||||
|
||||
# Tools
|
||||
kali-tools-detect
|
||||
kali-tools-identify
|
||||
kali-tools-protect
|
||||
kali-tools-recover
|
||||
kali-tools-respond
|
||||
|
||||
# Graphical desktops
|
||||
kali-desktop-xfce
|
||||
kali-desktop-gnome
|
||||
kali-desktop-kde
|
@ -1,68 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
TDIR=$1
|
||||
MIRROR=$2
|
||||
DISKNUM=$3
|
||||
CDDIR=$4
|
||||
ARCHES=$5
|
||||
|
||||
# Copy grub theme assets
|
||||
# Until debian-cd picks them from d-i automatically:
|
||||
# http://bugs.debian.org/1003927
|
||||
cp -r $BASEDIR/../../kali-config/common/bootloaders/grub-pc/theme \
|
||||
$BASEDIR/../../kali-config/common/bootloaders/grub-pc/splash.png \
|
||||
$CDDIR/boot/grub/
|
||||
|
||||
cd $CDDIR
|
||||
|
||||
fix_branding() {
|
||||
sed -i -e 's|Debian GNU/Linux|Kali Linux|g' \
|
||||
-e 's|Kali GNU/Linux|Kali Linux|g' \
|
||||
-e 's|Debian kali-rolling|Kali Rolling|g' \
|
||||
-e 's|Debian|Kali|g' \
|
||||
-e 's|DEBIAN|KALI|g' \
|
||||
"$@"
|
||||
}
|
||||
|
||||
# Rebrand Debian into Kali
|
||||
if [ -e ../boot$DISKNUM/isolinux/menu.cfg ]; then
|
||||
fix_branding ../boot$DISKNUM/isolinux/menu.cfg \
|
||||
../boot$DISKNUM/isolinux/*.txt
|
||||
fi
|
||||
if [ -d boot/grub/theme ] && [ -s boot/grub/theme ]; then
|
||||
fix_branding boot/grub/theme/*
|
||||
fi
|
||||
|
||||
# Remove Debian's windows loader
|
||||
rm -f autorun.inf win32-loader.ini setup.exe
|
||||
|
||||
# Replace Debian specific documentation
|
||||
rm -rf css
|
||||
cat >README.txt <<EOF
|
||||
This disc contains an installer for Kali Linux.
|
||||
|
||||
Read more at: https://www.kali.org
|
||||
EOF
|
||||
cat >README.html <<EOF
|
||||
<html>
|
||||
<head><title>Kali Linux Installer Disc</title></head>
|
||||
<body>
|
||||
This disc contains an installer for Kali Linux.
|
||||
|
||||
Read more at: <a href="https://www.kali.org">www.kali.org</a>
|
||||
</body>
|
||||
</html>
|
||||
EOF
|
||||
|
||||
# Replace kali-last-snapshot with kali-rolling
|
||||
if [ -e dists/kali-last-snapshot ]; then
|
||||
mv dists/kali-last-snapshot dists/kali-rolling
|
||||
rm -f dists/stable && ln -sf kali-rolling dists/stable
|
||||
sed -i -e 's|kali-last-snapshot|kali-rolling|g' \
|
||||
dists/kali-rolling/Release
|
||||
fi
|
||||
|
||||
# Redo the md5sum.txt due to our changes
|
||||
find . -type f | grep -v ./md5sum.txt | xargs md5sum | sort -uk2 > md5sum.txt
|
@ -1 +0,0 @@
|
||||
/usr/share/simple-cdd/profiles/default.downloads
|
@ -1 +0,0 @@
|
||||
/usr/share/simple-cdd/profiles/default.excludes
|
@ -1 +0,0 @@
|
||||
# Disable default packages from simple-cdd
|
@ -1,3 +0,0 @@
|
||||
# loads the simple-cdd-profiles udeb to which asks for which profiles to use,
|
||||
# load the debconf preseeding and queue packages for installation.
|
||||
d-i preseed/early_command string anna-install simple-cdd-profiles
|
@ -1 +0,0 @@
|
||||
simple-cdd-profiles
|
@ -1,45 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
set -eu
|
||||
|
||||
cat << 'EOF' > /etc/apt/sources.list.d/elastic.sources
|
||||
Enabled: yes
|
||||
Types: deb
|
||||
URIs: https://artifacts.elastic.co/packages/8.x/apt
|
||||
Suites: stable
|
||||
Components: main
|
||||
Signed-by:
|
||||
-----BEGIN PGP PUBLIC KEY BLOCK-----
|
||||
Version: GnuPG v2.0.14 (GNU/Linux)
|
||||
.
|
||||
mQENBFI3HsoBCADXDtbNJnxbPqB1vDNtCsqhe49vFYsZN9IOZsZXgp7aHjh6CJBD
|
||||
A+bGFOwyhbd7at35jQjWAw1O3cfYsKAmFy+Ar3LHCMkV3oZspJACTIgCrwnkic/9
|
||||
CUliQe324qvObU2QRtP4Fl0zWcfb/S8UYzWXWIFuJqMvE9MaRY1bwUBvzoqavLGZ
|
||||
j3SF1SPO+TB5QrHkrQHBsmX+Jda6d4Ylt8/t6CvMwgQNlrlzIO9WT+YN6zS+sqHd
|
||||
1YK/aY5qhoLNhp9G/HxhcSVCkLq8SStj1ZZ1S9juBPoXV1ZWNbxFNGwOh/NYGldD
|
||||
2kmBf3YgCqeLzHahsAEpvAm8TBa7Q9W21C8vABEBAAG0RUVsYXN0aWNzZWFyY2gg
|
||||
KEVsYXN0aWNzZWFyY2ggU2lnbmluZyBLZXkpIDxkZXZfb3BzQGVsYXN0aWNzZWFy
|
||||
Y2gub3JnPokBOAQTAQIAIgUCUjceygIbAwYLCQgHAwIGFQgCCQoLBBYCAwECHgEC
|
||||
F4AACgkQ0n1mbNiOQrRzjAgAlTUQ1mgo3nK6BGXbj4XAJvuZDG0HILiUt+pPnz75
|
||||
nsf0NWhqR4yGFlmpuctgCmTD+HzYtV9fp9qW/bwVuJCNtKXk3sdzYABY+Yl0Cez/
|
||||
7C2GuGCOlbn0luCNT9BxJnh4mC9h/cKI3y5jvZ7wavwe41teqG14V+EoFSn3NPKm
|
||||
TxcDTFrV7SmVPxCBcQze00cJhprKxkuZMPPVqpBS+JfDQtzUQD/LSFfhHj9eD+Xe
|
||||
8d7sw+XvxB2aN4gnTlRzjL1nTRp0h2/IOGkqYfIG9rWmSLNlxhB2t+c0RsjdGM4/
|
||||
eRlPWylFbVMc5pmDpItrkWSnzBfkmXL3vO2X3WvwmSFiQbkBDQRSNx7KAQgA5JUl
|
||||
zcMW5/cuyZR8alSacKqhSbvoSqqbzHKcUQZmlzNMKGTABFG1yRx9r+wa/fvqP6OT
|
||||
RzRDvVS/cycws8YX7Ddum7x8uI95b9ye1/Xy5noPEm8cD+hplnpU+PBQZJ5XJ2I+
|
||||
1l9Nixx47wPGXeClLqcdn0ayd+v+Rwf3/XUJrvccG2YZUiQ4jWZkoxsA07xx7Bj+
|
||||
Lt8/FKG7sHRFvePFU0ZS6JFx9GJqjSBbHRRkam+4emW3uWgVfZxuwcUCn1ayNgRt
|
||||
KiFv9jQrg2TIWEvzYx9tywTCxc+FFMWAlbCzi+m4WD+QUWWfDQ009U/WM0ks0Kww
|
||||
EwSk/UDuToxGnKU2dQARAQABiQEfBBgBAgAJBQJSNx7KAhsMAAoJENJ9ZmzYjkK0
|
||||
c3MIAIE9hAR20mqJWLcsxLtrRs6uNF1VrpB+4n/55QU7oxA1iVBO6IFu4qgsF12J
|
||||
TavnJ5MLaETlggXY+zDef9syTPXoQctpzcaNVDmedwo1SiL03uMoblOvWpMR/Y0j
|
||||
6rm7IgrMWUDXDPvoPGjMl2q1iTeyHkMZEyUJ8SKsaHh4jV9wp9KmC8C+9CwMukL7
|
||||
vM5w8cgvJoAwsp3Fn59AxWthN3XJYcnMfStkIuWgR7U2r+a210W6vnUxU4oN0PmM
|
||||
cursYPyeV0NX/KQeUeNMwGTFB6QHS/anRaGQewijkrYYoTNtfllxIu9XYmiBERQ/
|
||||
qPDlGRlOgVTd9xUfHFkzB52c70E=
|
||||
=92oX
|
||||
-----END PGP PUBLIC KEY BLOCK-----
|
||||
EOF
|
||||
|
||||
apt-get update
|
@ -1 +0,0 @@
|
||||
../../kali-config/common/includes.installer/kali-finish-install
|
@ -1 +0,0 @@
|
||||
../../kali-config/common/includes.installer/preseed.cfg
|
@ -1,18 +0,0 @@
|
||||
# Ensure eatmydata is available for eatmydata.udeb
|
||||
eatmydata
|
||||
# Add packages required for virtualization support (installed by
|
||||
# /usr/lib/finish-install.d/08hw-detect) including their recommends
|
||||
hyperv-daemons
|
||||
open-vm-tools
|
||||
open-vm-tools-desktop
|
||||
qemu-guest-agent
|
||||
virtualbox-guest-utils
|
||||
virtualbox-guest-x11
|
||||
xauth
|
||||
xserver-xorg-video-vmware
|
||||
# Add packages required for speech synthesis (installed by
|
||||
# /usr/lib/finish-install.d/06espeakup) including their recommends
|
||||
espeakup
|
||||
# Ensure unrar is available, otherwise the "unrar | unar" dependency
|
||||
# in kali-linux-headless ends up satisfied by the unar alternative
|
||||
unrar
|
@ -1,3 +0,0 @@
|
||||
# Do not use a network mirror, full offline install
|
||||
d-i apt-setup/use_mirror boolean false
|
||||
d-i pkgsel/upgrade select none
|
@ -1,118 +0,0 @@
|
||||
# simple-cdd.conf detailed configuration file
|
||||
#
|
||||
# Note: this is an example list of configuration options: it is *strongly*
|
||||
# advised to merely create a new file using only the options you actually need.
|
||||
#
|
||||
# Note: Variables in lowercase are only used by simple-cdd.
|
||||
#
|
||||
# Profile Selection
|
||||
#
|
||||
# The following four files get included on the CD if present:
|
||||
# $profile.preseed
|
||||
# Debconf selections.
|
||||
# $profile.packages
|
||||
# Packages to be installed with the profile. Dependencies also will
|
||||
# be installed.
|
||||
# $profile.downloads
|
||||
# Additional packages to be included on the CD with this profile, but
|
||||
# not installed by default.
|
||||
# $profile.postinst
|
||||
# Post-install script that is run after installing packages.
|
||||
#
|
||||
# During the install after base system setup, it will give you the
|
||||
# options to determine which profiles you want to install.
|
||||
|
||||
# Profiles to include on the CD
|
||||
profiles=${profiles:-kali}
|
||||
|
||||
# To automatically select profiles (must also be listed in profiles):
|
||||
auto_profiles=${auto_profiles:-kali}
|
||||
|
||||
# To include profiles which only effect the CD build
|
||||
#build_profiles="kali"
|
||||
|
||||
# Mirror tools
|
||||
mirror_tools="reprepro download"
|
||||
mirror_files="" # Don't try to download README doc/ tools/
|
||||
require_optional_packages="true"
|
||||
ignore_missing_checksums="true"
|
||||
|
||||
# Mirror variables
|
||||
server="http.kali.org"
|
||||
debian_mirror=${debian_mirror:-http://kali.download/kali/}
|
||||
keyring="/usr/share/keyrings/kali-archive-keyring.gpg"
|
||||
|
||||
# Which components to get from the mirror
|
||||
mirror_components="main contrib non-free non-free-firmware"
|
||||
|
||||
# Disable *-security and *-updates repositories
|
||||
security_mirror=""
|
||||
updates_mirror=""
|
||||
|
||||
# Add kernel parameter to disable
|
||||
export KERNEL_PARAMS="${KERNEL_PARAMS} net.ifnames=0 "
|
||||
|
||||
# Kernel and architecture related
|
||||
if [ "$ARCH" = "i386" ]; then
|
||||
kernel_packages="linux-image-686-pae"
|
||||
fi
|
||||
if [ "$ARCH" = "arm64" ]; then
|
||||
kernel_packages="linux-image-arm64"
|
||||
# ARM devices don't typically have a default console set, so we export one here
|
||||
export KERNEL_PARAMS="${KERNEL_PARAMS} console=tty0 "
|
||||
# Some packages are not available on arm64
|
||||
require_optional_packages="false"
|
||||
fi
|
||||
|
||||
# Random other variables
|
||||
export default_desktop="xfce"
|
||||
export DISKINFO_DISTRO="Kali"
|
||||
export DEBVERSION=${DEBVERSION:-rolling}
|
||||
export OFFICIAL="Official"
|
||||
export VOLID_BASE="Kali Linux"
|
||||
export CDNAME="kali"
|
||||
|
||||
export OMIT_MANUAL=1
|
||||
export OMIT_RELEASE_NOTES=1
|
||||
export OMIT_DOC_TOOLS=1
|
||||
export DOJIGDO=0
|
||||
export NORECOMMENDS=0
|
||||
export NONFREE=1
|
||||
export NONFREE_COMPONENTS="non-free non-free-firmware"
|
||||
export CONTRIB=1
|
||||
export FORCE_FIRMWARE=1
|
||||
export ARCHIVE_KEYRING_PACKAGE=kali-archive-keyring
|
||||
export DESKTOP=xfce
|
||||
export DISKTYPE=${DISKTYPE:-DVD}
|
||||
|
||||
# Kali repo doesn't have dep11 metadata
|
||||
export DEP11=0
|
||||
|
||||
# Configure a hook to apply our customization via debian-cd
|
||||
export DISC_END_HOOK=$(pwd)/disc-end-hook
|
||||
|
||||
# Extra files to include onto the CD
|
||||
# These will get copied to /simple-cdd dir on the CD
|
||||
# Paths starting with '/' are interpreted as absolute, otherwise relative
|
||||
# to the current directory.
|
||||
#all_extras=""
|
||||
|
||||
# Generate a simple package repository on the CD with the debs cited
|
||||
# Please insert full paths.
|
||||
local_packages="$(pwd)/local_packages"
|
||||
|
||||
# Call mirror tools at each build- defaults to true.
|
||||
#do_mirror="false"
|
||||
|
||||
# Set your proxy (if any).
|
||||
#export http_proxy=http://localhost:3128
|
||||
|
||||
# Location of debian-cd files
|
||||
debian_cd_dir=${BASEDIR:-/usr/share/debian-cd}
|
||||
|
||||
# Set target architecture for build
|
||||
#export ARCH=amd64
|
||||
#export ARCHES="amd64 i386"
|
||||
|
||||
# Define the CD label
|
||||
export DISKINFO="Kali Installer: Kali Linux $DEBVERSION $(date +%Y-%m-%d)"
|
Loading…
Reference in New Issue