├── Jenkinsfile ├── LICENSE ├── Makefile ├── README ├── configure ├── customization ├── archives │ ├── parrot.key.chroot │ └── parrot.list.chroot ├── hooks │ └── normal │ │ ├── 0001-setup_user_parrot.hook.binary │ │ ├── 0002-add_parrot_to_groups.hook.binary │ │ ├── 0003-check_sudoers_for_admin.hook.binary │ │ ├── 0020-create-mtab-symlink.hook.chroot │ │ ├── 0020-extract_initrd_uuid.hook.binary │ │ ├── 0021-silence-systemd.hook.chroot │ │ ├── 0022-enable-ssh-server.hook.chroot │ │ ├── 0023-enable-dnsmasq.hook.chroot │ │ ├── 0040-create-locales-files.hook.chroot │ │ ├── 0052-remove_etc_parts.hook.binary │ │ ├── 0053-remove-plus-tools.hook.binary │ │ ├── 0100-remove-adjtime-configuration.hook.chroot │ │ ├── 0110-remove-backup-files.hook.chroot │ │ ├── 0120-remove-dbus-machine-id.hook.chroot │ │ ├── 0130-remove-gnome-icon-cache.hook.chroot │ │ ├── 0140-remove-log-files.hook.chroot │ │ ├── 0160-remove-openssh-server-host-keys.hook.chroot │ │ ├── 0170-remove-python-py.hook.chroot │ │ ├── 0180-remove-systemd-machine-id.hook.chroot │ │ ├── 0190-remove-temporary-files.hook.chroot │ │ ├── 0195-remove-ssl-cert-snakeoil.hook.chroot │ │ ├── 0200-remove-udev-persistent-cd-rules.hook.chroot │ │ ├── 0300-remove-udev-persistent-net-rules.hook.chroot │ │ ├── 0400-update-apt-file-cache.hook.chroot │ │ ├── 0410-update-apt-xapian-index.hook.chroot │ │ └── 0430-update-mlocate-database.hook.chroot ├── includes.chroot │ ├── etc │ │ ├── default │ │ │ └── locale │ │ ├── dnsmasq.conf │ │ ├── hostname │ │ ├── hosts │ │ ├── network │ │ │ └── interfaces │ │ ├── resolv.conf │ │ └── skel │ │ │ └── .config │ │ │ └── autostart │ │ │ ├── conky-start.desktop │ │ │ └── login-sound.desktop │ └── lib │ │ └── firmware │ │ └── brcm │ │ └── brcmfmac43430-sdio.txt ├── package-lists │ └── parrot-standard.list.chroot └── preseed │ └── dictionaries-common.cfg.chroot ├── image-writer-resizer.sh └── packages.chroot ├── libraspberrypi-bin_1.20161215-1_armhf.deb ├── libraspberrypi-dev_1.20161215-1_armhf.deb ├── libraspberrypi-doc_1.20161215-1_armhf.deb ├── libraspberrypi0_1.20161215-1_armhf.deb ├── lxkeymap_0.8.0~bzr25-1+rpi1_all.deb ├── raspberrypi-bootloader_1.20161215-1_armhf.deb ├── raspberrypi-kernel-headers_1.20161215-1_armhf.deb ├── raspberrypi-kernel_1.20161215-1_armhf.deb ├── raspberrypi-sys-mods_20161220_all.deb ├── raspi-config_20161207_all.deb ├── raspi-copies-and-fills_0.5-1_armhf.deb ├── raspi-gpio_0.20150914_armhf.deb ├── rc-gui_1.5_armhf.deb ├── rpi-update_20140705_all.deb └── ssh-regen-startup_0.1_all.deb /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/README -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/configure -------------------------------------------------------------------------------- /customization/archives/parrot.key.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/archives/parrot.key.chroot -------------------------------------------------------------------------------- /customization/archives/parrot.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/archives/parrot.list.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0001-setup_user_parrot.hook.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0001-setup_user_parrot.hook.binary -------------------------------------------------------------------------------- /customization/hooks/normal/0002-add_parrot_to_groups.hook.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0002-add_parrot_to_groups.hook.binary -------------------------------------------------------------------------------- /customization/hooks/normal/0003-check_sudoers_for_admin.hook.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0003-check_sudoers_for_admin.hook.binary -------------------------------------------------------------------------------- /customization/hooks/normal/0020-create-mtab-symlink.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0020-create-mtab-symlink.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0020-extract_initrd_uuid.hook.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0020-extract_initrd_uuid.hook.binary -------------------------------------------------------------------------------- /customization/hooks/normal/0021-silence-systemd.hook.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0021-silence-systemd.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0022-enable-ssh-server.hook.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0022-enable-ssh-server.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0023-enable-dnsmasq.hook.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0023-enable-dnsmasq.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0040-create-locales-files.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0040-create-locales-files.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0052-remove_etc_parts.hook.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0052-remove_etc_parts.hook.binary -------------------------------------------------------------------------------- /customization/hooks/normal/0053-remove-plus-tools.hook.binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0053-remove-plus-tools.hook.binary -------------------------------------------------------------------------------- /customization/hooks/normal/0100-remove-adjtime-configuration.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0100-remove-adjtime-configuration.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0110-remove-backup-files.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0110-remove-backup-files.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0120-remove-dbus-machine-id.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0120-remove-dbus-machine-id.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0130-remove-gnome-icon-cache.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0130-remove-gnome-icon-cache.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0140-remove-log-files.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0140-remove-log-files.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0160-remove-openssh-server-host-keys.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0160-remove-openssh-server-host-keys.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0170-remove-python-py.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0170-remove-python-py.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0180-remove-systemd-machine-id.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0180-remove-systemd-machine-id.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0190-remove-temporary-files.hook.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/hooks/normal/0190-remove-temporary-files.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0195-remove-ssl-cert-snakeoil.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0195-remove-ssl-cert-snakeoil.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0200-remove-udev-persistent-cd-rules.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0200-remove-udev-persistent-cd-rules.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0300-remove-udev-persistent-net-rules.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0300-remove-udev-persistent-net-rules.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0400-update-apt-file-cache.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0400-update-apt-file-cache.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0410-update-apt-xapian-index.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0410-update-apt-xapian-index.hook.chroot -------------------------------------------------------------------------------- /customization/hooks/normal/0430-update-mlocate-database.hook.chroot: -------------------------------------------------------------------------------- 1 | /usr/share/live/build/hooks/normal/0430-update-mlocate-database.hook.chroot -------------------------------------------------------------------------------- /customization/includes.chroot/etc/default/locale: -------------------------------------------------------------------------------- 1 | LANG=C.UTF-8 2 | -------------------------------------------------------------------------------- /customization/includes.chroot/etc/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/includes.chroot/etc/dnsmasq.conf -------------------------------------------------------------------------------- /customization/includes.chroot/etc/hostname: -------------------------------------------------------------------------------- 1 | parrot-armhf 2 | -------------------------------------------------------------------------------- /customization/includes.chroot/etc/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/includes.chroot/etc/hosts -------------------------------------------------------------------------------- /customization/includes.chroot/etc/network/interfaces: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/includes.chroot/etc/network/interfaces -------------------------------------------------------------------------------- /customization/includes.chroot/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/includes.chroot/etc/resolv.conf -------------------------------------------------------------------------------- /customization/includes.chroot/etc/skel/.config/autostart/conky-start.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/includes.chroot/etc/skel/.config/autostart/conky-start.desktop -------------------------------------------------------------------------------- /customization/includes.chroot/etc/skel/.config/autostart/login-sound.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/includes.chroot/etc/skel/.config/autostart/login-sound.desktop -------------------------------------------------------------------------------- /customization/includes.chroot/lib/firmware/brcm/brcmfmac43430-sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/includes.chroot/lib/firmware/brcm/brcmfmac43430-sdio.txt -------------------------------------------------------------------------------- /customization/package-lists/parrot-standard.list.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/package-lists/parrot-standard.list.chroot -------------------------------------------------------------------------------- /customization/preseed/dictionaries-common.cfg.chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/customization/preseed/dictionaries-common.cfg.chroot -------------------------------------------------------------------------------- /image-writer-resizer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/image-writer-resizer.sh -------------------------------------------------------------------------------- /packages.chroot/libraspberrypi-bin_1.20161215-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/libraspberrypi-bin_1.20161215-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/libraspberrypi-dev_1.20161215-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/libraspberrypi-dev_1.20161215-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/libraspberrypi-doc_1.20161215-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/libraspberrypi-doc_1.20161215-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/libraspberrypi0_1.20161215-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/libraspberrypi0_1.20161215-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/lxkeymap_0.8.0~bzr25-1+rpi1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/lxkeymap_0.8.0~bzr25-1+rpi1_all.deb -------------------------------------------------------------------------------- /packages.chroot/raspberrypi-bootloader_1.20161215-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/raspberrypi-bootloader_1.20161215-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/raspberrypi-kernel-headers_1.20161215-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/raspberrypi-kernel-headers_1.20161215-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/raspberrypi-kernel_1.20161215-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/raspberrypi-kernel_1.20161215-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/raspberrypi-sys-mods_20161220_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/raspberrypi-sys-mods_20161220_all.deb -------------------------------------------------------------------------------- /packages.chroot/raspi-config_20161207_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/raspi-config_20161207_all.deb -------------------------------------------------------------------------------- /packages.chroot/raspi-copies-and-fills_0.5-1_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/raspi-copies-and-fills_0.5-1_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/raspi-gpio_0.20150914_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/raspi-gpio_0.20150914_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/rc-gui_1.5_armhf.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/rc-gui_1.5_armhf.deb -------------------------------------------------------------------------------- /packages.chroot/rpi-update_20140705_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/rpi-update_20140705_all.deb -------------------------------------------------------------------------------- /packages.chroot/ssh-regen-startup_0.1_all.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParrotSec/parrot-raspberrypi-imgbuilder/HEAD/packages.chroot/ssh-regen-startup_0.1_all.deb --------------------------------------------------------------------------------