├── .gitignore ├── LICENSE ├── Makefile ├── README ├── README.fixme ├── bin ├── config-test ├── functions.sh ├── get-stock-iso ├── install-deps ├── isofs.d-run-parts ├── library.sh ├── mount-chroot ├── mount-iso ├── mount-rootfs ├── prep.d-run-parts ├── print-msg ├── rootfs-library.sh ├── rootfs.d-run-parts ├── run-in-kvm ├── run-in-rootfs ├── unmount-chroot ├── unmount-iso └── unmount-rootfs ├── ccache └── .gitignore ├── config ├── Kconfig ├── Kconfig.applications ├── Kconfig.apt ├── Kconfig.build ├── Kconfig.target ├── Kconfig.tor ├── Kconfig.ubuntu ├── clean-rootfs.d │ ├── apt │ ├── root-home │ └── tmp ├── config.vars ├── gnuradio.vars ├── install-pkgs.d │ ├── .gitignore │ ├── apache-thrift │ ├── build-tools │ ├── common │ ├── ferm │ ├── git │ ├── gnss-sdr │ ├── gnuradio │ ├── gqrx │ ├── gr-fosphor │ ├── gr-rds │ ├── jupyter │ ├── libosmocore │ ├── minimodem │ └── unity ├── pybombs.d │ ├── install.conf │ ├── postinst.d │ │ ├── apache-thrift │ │ ├── bladeRF │ │ ├── gnss-sdr │ │ ├── gnuradio │ │ ├── hackrf │ │ ├── rtl-sdr │ │ └── uhd │ └── preinst.d │ │ ├── bladeRF │ │ ├── gnss-sdr │ │ ├── gr-fosphor │ │ └── gr-osmosdr ├── remove-pkgs.d │ ├── .gitignore │ ├── apps │ ├── avahi │ ├── ubiquity │ ├── unity-scopes │ └── zeitgeist ├── remove-pkgs2.d │ └── base └── rootfs.vars ├── custom ├── grub │ ├── grub.cfg │ └── syslinux.cfg ├── isofs │ └── casper │ │ └── txt.cfg ├── linux-tools │ ├── linux-tools-trusty │ └── linux-tools-xenial └── rootfs │ ├── etc │ ├── NetworkManager │ │ └── system-connections │ │ │ ├── Internet (DHCP assigned) │ │ │ └── USRP │ ├── apparmor.d │ │ ├── abstractions │ │ │ └── tor │ │ └── system_tor │ ├── apt │ │ ├── sources.list-14.04.5 │ │ ├── sources.list-16.04 │ │ └── sources.list.d │ │ │ ├── torproject.org.list-trusty │ │ │ └── torproject.org.list-xenial │ ├── dpkg │ │ └── dpkg.cfg.d │ │ │ ├── force-confold │ │ │ └── force-unsafe-io │ ├── ferm │ │ ├── ferm.conf.trans │ │ └── ferm.conf.workstation │ ├── initramfs-tools │ │ └── initramfs.conf │ ├── rc.local │ ├── resolv.conf │ ├── security │ │ └── limits.d │ │ │ └── 10-uhd-limits.conf │ ├── skel │ │ ├── .bash_aliases │ │ ├── .config │ │ │ ├── autostart │ │ │ │ └── indicator-multiload.desktop │ │ │ └── dconf │ │ │ │ ├── user-trusty │ │ │ │ └── user-xenial │ │ ├── .gnuradio │ │ │ ├── config.conf │ │ │ └── thrift.conf │ │ ├── .mozilla │ │ │ └── firefox │ │ │ │ ├── Crash Reports │ │ │ │ ├── InstallTime20140830210550 │ │ │ │ ├── InstallTime20141013200257 │ │ │ │ ├── InstallTime20141127111021 │ │ │ │ ├── InstallTime20150511103818 │ │ │ │ └── InstallTime20160920074044 │ │ │ │ ├── profiles.ini │ │ │ │ └── w6kh1oeg.default │ │ │ │ ├── .parentlock │ │ │ │ ├── SiteSecurityServiceState.txt │ │ │ │ ├── addons.json │ │ │ │ ├── blocklist.xml │ │ │ │ ├── cert8.db │ │ │ │ ├── compatibility.ini │ │ │ │ ├── content-prefs.sqlite │ │ │ │ ├── cookies.sqlite │ │ │ │ ├── crashes │ │ │ │ └── store.json.mozlz4 │ │ │ │ ├── datareporting │ │ │ │ ├── archived │ │ │ │ │ └── 2016-10 │ │ │ │ │ │ ├── 1476133543865.0eafe1f4-a0d0-4a68-a485-14e6095ad5b8.main.jsonlz4 │ │ │ │ │ │ └── 1476133672956.a511a5bc-618d-4505-a28e-c38890f4cf8a.main.jsonlz4 │ │ │ │ ├── session-state.json │ │ │ │ └── state.json │ │ │ │ ├── extensions.ini │ │ │ │ ├── extensions.json │ │ │ │ ├── formhistory.sqlite │ │ │ │ ├── gmp-gmpopenh264 │ │ │ │ └── 1.6 │ │ │ │ │ ├── gmpopenh264.info │ │ │ │ │ └── libgmpopenh264.so │ │ │ │ ├── healthreport │ │ │ │ └── state.json │ │ │ │ ├── key3.db │ │ │ │ ├── localstore.rdf │ │ │ │ ├── mimeTypes.rdf │ │ │ │ ├── permissions.sqlite │ │ │ │ ├── places.sqlite │ │ │ │ ├── places.sqlite-shm │ │ │ │ ├── places.sqlite-wal │ │ │ │ ├── pluginreg.dat │ │ │ │ ├── prefs.js │ │ │ │ ├── saved-telemetry-pings │ │ │ │ └── a511a5bc-618d-4505-a28e-c38890f4cf8a │ │ │ │ ├── search.json │ │ │ │ ├── search.json.mozlz4 │ │ │ │ ├── secmod.db │ │ │ │ ├── sessionCheckpoints.json │ │ │ │ ├── sessionstore-backups │ │ │ │ ├── previous.js │ │ │ │ ├── upgrade.js-20141127111021 │ │ │ │ ├── upgrade.js-20150511103818 │ │ │ │ └── upgrade.js-20160920074044 │ │ │ │ ├── sessionstore.js │ │ │ │ ├── storage.sqlite │ │ │ │ ├── storage │ │ │ │ └── permanent │ │ │ │ │ └── chrome │ │ │ │ │ ├── .metadata │ │ │ │ │ ├── .metadata-v2 │ │ │ │ │ └── idb │ │ │ │ │ └── 2918063365piupsah.sqlite │ │ │ │ ├── times.json │ │ │ │ ├── webapps │ │ │ │ └── webapps.json │ │ │ │ ├── webappsstore.sqlite │ │ │ │ └── xulstore.json │ │ └── .octaverc │ ├── sysctl.d │ │ ├── 10-linux-tools.conf │ │ └── 10-uhd-buffers.conf │ └── tor │ │ └── torrc │ └── usr │ ├── local │ ├── share │ │ └── gnuradio │ │ │ ├── gnuradio_logo.png │ │ │ └── themes │ │ │ └── clabs.qss │ └── src │ │ └── pybombs_legacy │ │ └── config.dat │ ├── sbin │ └── policy-rc.d │ └── share │ └── initramfs-tools │ └── scripts │ ├── casper-14.04.5 │ └── casper-15.10 ├── gitcache └── .gitignore ├── iso └── .gitignore ├── make-usb.sh ├── mnt ├── .gitignore └── usb │ └── .mount ├── patches └── rootfs │ ├── casper-encsqfs.diff │ ├── ubuntu.session.diff │ ├── unity7.conf-xenial.diff │ └── unity7.conf.diff ├── scripts ├── isofs.d │ ├── 50-compress-rootfs │ ├── 50-copy-initrd │ ├── 50-encrypt-rootfs │ ├── 60-custom-isolinux-menu │ ├── 80-calc-iso-checksums │ └── 80-create-remastered-iso ├── prep.d │ └── .empty └── rootfs.d │ ├── 00-base │ ├── 10-apt-custom-repository-list │ ├── 10-apt-dpkg-force-confold │ ├── 10-apt-force-unsafe-io │ ├── 19-linux-tools-pkgs │ ├── 20-packages-00-uninstall │ ├── 20-packages-01-upgrade │ ├── 20-packages-02-install │ ├── 30-ccache │ ├── 30-desktop-install-dconf │ ├── 30-desktop-install-indicator-multiload-autostart │ ├── 30-desktop-remove-amazon-icon │ ├── 30-desktop-remove-examples-shortcut │ ├── 30-ferm-iptables │ ├── 30-linux-tools │ ├── 30-network │ ├── 30-tor │ ├── 30-unity │ ├── 30-unity-disable-scopes │ ├── 40-gnuradio-config-files │ ├── 40-gnuradio-desktop-shortcuts │ ├── 40-gnuradio-documentation │ ├── 40-gnuradio-guided-tutorials │ ├── 40-gnuradio-homedir │ ├── 40-gnuradio-logo │ ├── 40-gnuradio-mozilla-profile │ ├── 40-gnuradio-themes │ ├── 50-pybombs-00-install │ ├── 50-pybombs-10-install-apps │ ├── 60-jupyter-notebook │ ├── 80-packages-00-uninstall │ ├── 90-apt-cleanup │ ├── 90-regen-initramfs │ └── 99-clean-rootfs └── stamps └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/Makefile -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/README -------------------------------------------------------------------------------- /README.fixme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/README.fixme -------------------------------------------------------------------------------- /bin/config-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/config-test -------------------------------------------------------------------------------- /bin/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/functions.sh -------------------------------------------------------------------------------- /bin/get-stock-iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/get-stock-iso -------------------------------------------------------------------------------- /bin/install-deps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/install-deps -------------------------------------------------------------------------------- /bin/isofs.d-run-parts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/isofs.d-run-parts -------------------------------------------------------------------------------- /bin/library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/library.sh -------------------------------------------------------------------------------- /bin/mount-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/mount-chroot -------------------------------------------------------------------------------- /bin/mount-iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/mount-iso -------------------------------------------------------------------------------- /bin/mount-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/mount-rootfs -------------------------------------------------------------------------------- /bin/prep.d-run-parts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/prep.d-run-parts -------------------------------------------------------------------------------- /bin/print-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/print-msg -------------------------------------------------------------------------------- /bin/rootfs-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/rootfs-library.sh -------------------------------------------------------------------------------- /bin/rootfs.d-run-parts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/rootfs.d-run-parts -------------------------------------------------------------------------------- /bin/run-in-kvm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/run-in-kvm -------------------------------------------------------------------------------- /bin/run-in-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/run-in-rootfs -------------------------------------------------------------------------------- /bin/unmount-chroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/unmount-chroot -------------------------------------------------------------------------------- /bin/unmount-iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/unmount-iso -------------------------------------------------------------------------------- /bin/unmount-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/bin/unmount-rootfs -------------------------------------------------------------------------------- /ccache/.gitignore: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /config/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/Kconfig -------------------------------------------------------------------------------- /config/Kconfig.applications: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/Kconfig.applications -------------------------------------------------------------------------------- /config/Kconfig.apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/Kconfig.apt -------------------------------------------------------------------------------- /config/Kconfig.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/Kconfig.build -------------------------------------------------------------------------------- /config/Kconfig.target: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/Kconfig.target -------------------------------------------------------------------------------- /config/Kconfig.tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/Kconfig.tor -------------------------------------------------------------------------------- /config/Kconfig.ubuntu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/Kconfig.ubuntu -------------------------------------------------------------------------------- /config/clean-rootfs.d/apt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/clean-rootfs.d/apt -------------------------------------------------------------------------------- /config/clean-rootfs.d/root-home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/clean-rootfs.d/root-home -------------------------------------------------------------------------------- /config/clean-rootfs.d/tmp: -------------------------------------------------------------------------------- 1 | /tmp/* 2 | -------------------------------------------------------------------------------- /config/config.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/config.vars -------------------------------------------------------------------------------- /config/gnuradio.vars: -------------------------------------------------------------------------------- 1 | GNURADIO_DOC_VERSION=3.7.11 2 | -------------------------------------------------------------------------------- /config/install-pkgs.d/.gitignore: -------------------------------------------------------------------------------- 1 | /linux-tools 2 | -------------------------------------------------------------------------------- /config/install-pkgs.d/apache-thrift: -------------------------------------------------------------------------------- 1 | bison 2 | flex 3 | -------------------------------------------------------------------------------- /config/install-pkgs.d/build-tools: -------------------------------------------------------------------------------- 1 | build-essential 2 | cmake 3 | swig 4 | pkg-config 5 | -------------------------------------------------------------------------------- /config/install-pkgs.d/common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/install-pkgs.d/common -------------------------------------------------------------------------------- /config/install-pkgs.d/ferm: -------------------------------------------------------------------------------- 1 | ferm 2 | -------------------------------------------------------------------------------- /config/install-pkgs.d/git: -------------------------------------------------------------------------------- 1 | git 2 | -------------------------------------------------------------------------------- /config/install-pkgs.d/gnss-sdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/install-pkgs.d/gnss-sdr -------------------------------------------------------------------------------- /config/install-pkgs.d/gnuradio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/install-pkgs.d/gnuradio -------------------------------------------------------------------------------- /config/install-pkgs.d/gqrx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/install-pkgs.d/gqrx -------------------------------------------------------------------------------- /config/install-pkgs.d/gr-fosphor: -------------------------------------------------------------------------------- 1 | opencl-headers 2 | rpm2cpio 3 | -------------------------------------------------------------------------------- /config/install-pkgs.d/gr-rds: -------------------------------------------------------------------------------- 1 | libxml2-dev 2 | -------------------------------------------------------------------------------- /config/install-pkgs.d/jupyter: -------------------------------------------------------------------------------- 1 | python-pip 2 | -------------------------------------------------------------------------------- /config/install-pkgs.d/libosmocore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/install-pkgs.d/libosmocore -------------------------------------------------------------------------------- /config/install-pkgs.d/minimodem: -------------------------------------------------------------------------------- 1 | minimodem 2 | -------------------------------------------------------------------------------- /config/install-pkgs.d/unity: -------------------------------------------------------------------------------- 1 | compizconfig-settings-manager 2 | dconf-tools 3 | -------------------------------------------------------------------------------- /config/pybombs.d/install.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/install.conf -------------------------------------------------------------------------------- /config/pybombs.d/postinst.d/apache-thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/postinst.d/apache-thrift -------------------------------------------------------------------------------- /config/pybombs.d/postinst.d/bladeRF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/postinst.d/bladeRF -------------------------------------------------------------------------------- /config/pybombs.d/postinst.d/gnss-sdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/postinst.d/gnss-sdr -------------------------------------------------------------------------------- /config/pybombs.d/postinst.d/gnuradio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/postinst.d/gnuradio -------------------------------------------------------------------------------- /config/pybombs.d/postinst.d/hackrf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/postinst.d/hackrf -------------------------------------------------------------------------------- /config/pybombs.d/postinst.d/rtl-sdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/postinst.d/rtl-sdr -------------------------------------------------------------------------------- /config/pybombs.d/postinst.d/uhd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/postinst.d/uhd -------------------------------------------------------------------------------- /config/pybombs.d/preinst.d/bladeRF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/preinst.d/bladeRF -------------------------------------------------------------------------------- /config/pybombs.d/preinst.d/gnss-sdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/preinst.d/gnss-sdr -------------------------------------------------------------------------------- /config/pybombs.d/preinst.d/gr-fosphor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/preinst.d/gr-fosphor -------------------------------------------------------------------------------- /config/pybombs.d/preinst.d/gr-osmosdr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/pybombs.d/preinst.d/gr-osmosdr -------------------------------------------------------------------------------- /config/remove-pkgs.d/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/remove-pkgs.d/apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/remove-pkgs.d/apps -------------------------------------------------------------------------------- /config/remove-pkgs.d/avahi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/remove-pkgs.d/avahi -------------------------------------------------------------------------------- /config/remove-pkgs.d/ubiquity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/remove-pkgs.d/ubiquity -------------------------------------------------------------------------------- /config/remove-pkgs.d/unity-scopes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/remove-pkgs.d/unity-scopes -------------------------------------------------------------------------------- /config/remove-pkgs.d/zeitgeist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/remove-pkgs.d/zeitgeist -------------------------------------------------------------------------------- /config/remove-pkgs2.d/base: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /config/rootfs.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/config/rootfs.vars -------------------------------------------------------------------------------- /custom/grub/grub.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/grub/grub.cfg -------------------------------------------------------------------------------- /custom/grub/syslinux.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/grub/syslinux.cfg -------------------------------------------------------------------------------- /custom/isofs/casper/txt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/isofs/casper/txt.cfg -------------------------------------------------------------------------------- /custom/linux-tools/linux-tools-trusty: -------------------------------------------------------------------------------- 1 | linux-tools-4.4.0-31-generic 2 | -------------------------------------------------------------------------------- /custom/linux-tools/linux-tools-xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/linux-tools/linux-tools-xenial -------------------------------------------------------------------------------- /custom/rootfs/etc/NetworkManager/system-connections/Internet (DHCP assigned): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/NetworkManager/system-connections/Internet (DHCP assigned) -------------------------------------------------------------------------------- /custom/rootfs/etc/NetworkManager/system-connections/USRP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/NetworkManager/system-connections/USRP -------------------------------------------------------------------------------- /custom/rootfs/etc/apparmor.d/abstractions/tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/apparmor.d/abstractions/tor -------------------------------------------------------------------------------- /custom/rootfs/etc/apparmor.d/system_tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/apparmor.d/system_tor -------------------------------------------------------------------------------- /custom/rootfs/etc/apt/sources.list-14.04.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/apt/sources.list-14.04.5 -------------------------------------------------------------------------------- /custom/rootfs/etc/apt/sources.list-16.04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/apt/sources.list-16.04 -------------------------------------------------------------------------------- /custom/rootfs/etc/apt/sources.list.d/torproject.org.list-trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/apt/sources.list.d/torproject.org.list-trusty -------------------------------------------------------------------------------- /custom/rootfs/etc/apt/sources.list.d/torproject.org.list-xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/apt/sources.list.d/torproject.org.list-xenial -------------------------------------------------------------------------------- /custom/rootfs/etc/dpkg/dpkg.cfg.d/force-confold: -------------------------------------------------------------------------------- 1 | force-confold 2 | -------------------------------------------------------------------------------- /custom/rootfs/etc/dpkg/dpkg.cfg.d/force-unsafe-io: -------------------------------------------------------------------------------- 1 | force-unsafe-io 2 | -------------------------------------------------------------------------------- /custom/rootfs/etc/ferm/ferm.conf.trans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/ferm/ferm.conf.trans -------------------------------------------------------------------------------- /custom/rootfs/etc/ferm/ferm.conf.workstation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/ferm/ferm.conf.workstation -------------------------------------------------------------------------------- /custom/rootfs/etc/initramfs-tools/initramfs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/initramfs-tools/initramfs.conf -------------------------------------------------------------------------------- /custom/rootfs/etc/rc.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/rc.local -------------------------------------------------------------------------------- /custom/rootfs/etc/resolv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/resolv.conf -------------------------------------------------------------------------------- /custom/rootfs/etc/security/limits.d/10-uhd-limits.conf: -------------------------------------------------------------------------------- 1 | # For UHD 2 | @ubuntu - rtprio 50 3 | -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.bash_aliases: -------------------------------------------------------------------------------- 1 | alias grc=gnuradio-companion 2 | -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.config/autostart/indicator-multiload.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.config/autostart/indicator-multiload.desktop -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.config/dconf/user-trusty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.config/dconf/user-trusty -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.config/dconf/user-xenial: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.config/dconf/user-xenial -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.gnuradio/config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.gnuradio/config.conf -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.gnuradio/thrift.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.gnuradio/thrift.conf -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20140830210550: -------------------------------------------------------------------------------- 1 | 1409846992 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20141013200257: -------------------------------------------------------------------------------- 1 | 1413826126 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20141127111021: -------------------------------------------------------------------------------- 1 | 1419483575 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20150511103818: -------------------------------------------------------------------------------- 1 | 1434938413 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/Crash Reports/InstallTime20160920074044: -------------------------------------------------------------------------------- 1 | 1476133461 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/profiles.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/profiles.ini -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/.parentlock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/SiteSecurityServiceState.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/SiteSecurityServiceState.txt -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/addons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/addons.json -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/blocklist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/blocklist.xml -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/cert8.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/cert8.db -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/compatibility.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/compatibility.ini -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/content-prefs.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/content-prefs.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/cookies.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/cookies.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/crashes/store.json.mozlz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/crashes/store.json.mozlz4 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/datareporting/archived/2016-10/1476133543865.0eafe1f4-a0d0-4a68-a485-14e6095ad5b8.main.jsonlz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/datareporting/archived/2016-10/1476133543865.0eafe1f4-a0d0-4a68-a485-14e6095ad5b8.main.jsonlz4 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/datareporting/archived/2016-10/1476133672956.a511a5bc-618d-4505-a28e-c38890f4cf8a.main.jsonlz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/datareporting/archived/2016-10/1476133672956.a511a5bc-618d-4505-a28e-c38890f4cf8a.main.jsonlz4 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/datareporting/session-state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/datareporting/session-state.json -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/datareporting/state.json: -------------------------------------------------------------------------------- 1 | {"clientID":"d477d39e-ff0f-40cf-b3d3-78147a3e29f5"} -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/extensions.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/extensions.ini -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/extensions.json -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/formhistory.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/formhistory.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/gmp-gmpopenh264/1.6/gmpopenh264.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/gmp-gmpopenh264/1.6/gmpopenh264.info -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/gmp-gmpopenh264/1.6/libgmpopenh264.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/gmp-gmpopenh264/1.6/libgmpopenh264.so -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/healthreport/state.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/healthreport/state.json -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/key3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/key3.db -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/localstore.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/localstore.rdf -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/mimeTypes.rdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/mimeTypes.rdf -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/permissions.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/permissions.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/places.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/places.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/places.sqlite-shm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/places.sqlite-shm -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/places.sqlite-wal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/places.sqlite-wal -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/pluginreg.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/pluginreg.dat -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/prefs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/prefs.js -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/saved-telemetry-pings/a511a5bc-618d-4505-a28e-c38890f4cf8a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/saved-telemetry-pings/a511a5bc-618d-4505-a28e-c38890f4cf8a -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/search.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/search.json -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/search.json.mozlz4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/search.json.mozlz4 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/secmod.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/secmod.db -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionCheckpoints.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionCheckpoints.json -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/previous.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/previous.js -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/upgrade.js-20141127111021: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/upgrade.js-20141127111021 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/upgrade.js-20150511103818: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/upgrade.js-20150511103818 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/upgrade.js-20160920074044: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore-backups/upgrade.js-20160920074044 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/sessionstore.js -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage/permanent/chrome/.metadata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage/permanent/chrome/.metadata -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage/permanent/chrome/.metadata-v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage/permanent/chrome/.metadata-v2 -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage/permanent/chrome/idb/2918063365piupsah.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/storage/permanent/chrome/idb/2918063365piupsah.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/times.json: -------------------------------------------------------------------------------- 1 | { 2 | "created": 1409846992811 3 | } 4 | -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/webapps/webapps.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/webappsstore.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/webappsstore.sqlite -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/xulstore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.mozilla/firefox/w6kh1oeg.default/xulstore.json -------------------------------------------------------------------------------- /custom/rootfs/etc/skel/.octaverc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/skel/.octaverc -------------------------------------------------------------------------------- /custom/rootfs/etc/sysctl.d/10-linux-tools.conf: -------------------------------------------------------------------------------- 1 | # Allow perf as non-priveleged user 2 | kernel.perf_event_paranoid = -1 3 | -------------------------------------------------------------------------------- /custom/rootfs/etc/sysctl.d/10-uhd-buffers.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/sysctl.d/10-uhd-buffers.conf -------------------------------------------------------------------------------- /custom/rootfs/etc/tor/torrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/etc/tor/torrc -------------------------------------------------------------------------------- /custom/rootfs/usr/local/share/gnuradio/gnuradio_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/usr/local/share/gnuradio/gnuradio_logo.png -------------------------------------------------------------------------------- /custom/rootfs/usr/local/share/gnuradio/themes/clabs.qss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/usr/local/share/gnuradio/themes/clabs.qss -------------------------------------------------------------------------------- /custom/rootfs/usr/local/src/pybombs_legacy/config.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/usr/local/src/pybombs_legacy/config.dat -------------------------------------------------------------------------------- /custom/rootfs/usr/sbin/policy-rc.d: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exit 101 3 | -------------------------------------------------------------------------------- /custom/rootfs/usr/share/initramfs-tools/scripts/casper-14.04.5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/usr/share/initramfs-tools/scripts/casper-14.04.5 -------------------------------------------------------------------------------- /custom/rootfs/usr/share/initramfs-tools/scripts/casper-15.10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/custom/rootfs/usr/share/initramfs-tools/scripts/casper-15.10 -------------------------------------------------------------------------------- /gitcache/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iso/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/iso/.gitignore -------------------------------------------------------------------------------- /make-usb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/make-usb.sh -------------------------------------------------------------------------------- /mnt/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/mnt/.gitignore -------------------------------------------------------------------------------- /mnt/usb/.mount: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /patches/rootfs/casper-encsqfs.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/patches/rootfs/casper-encsqfs.diff -------------------------------------------------------------------------------- /patches/rootfs/ubuntu.session.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/patches/rootfs/ubuntu.session.diff -------------------------------------------------------------------------------- /patches/rootfs/unity7.conf-xenial.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/patches/rootfs/unity7.conf-xenial.diff -------------------------------------------------------------------------------- /patches/rootfs/unity7.conf.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/patches/rootfs/unity7.conf.diff -------------------------------------------------------------------------------- /scripts/isofs.d/50-compress-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/isofs.d/50-compress-rootfs -------------------------------------------------------------------------------- /scripts/isofs.d/50-copy-initrd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/isofs.d/50-copy-initrd -------------------------------------------------------------------------------- /scripts/isofs.d/50-encrypt-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/isofs.d/50-encrypt-rootfs -------------------------------------------------------------------------------- /scripts/isofs.d/60-custom-isolinux-menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/isofs.d/60-custom-isolinux-menu -------------------------------------------------------------------------------- /scripts/isofs.d/80-calc-iso-checksums: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/isofs.d/80-calc-iso-checksums -------------------------------------------------------------------------------- /scripts/isofs.d/80-create-remastered-iso: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/isofs.d/80-create-remastered-iso -------------------------------------------------------------------------------- /scripts/prep.d/.empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/rootfs.d/00-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/00-base -------------------------------------------------------------------------------- /scripts/rootfs.d/10-apt-custom-repository-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/10-apt-custom-repository-list -------------------------------------------------------------------------------- /scripts/rootfs.d/10-apt-dpkg-force-confold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/10-apt-dpkg-force-confold -------------------------------------------------------------------------------- /scripts/rootfs.d/10-apt-force-unsafe-io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/10-apt-force-unsafe-io -------------------------------------------------------------------------------- /scripts/rootfs.d/19-linux-tools-pkgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/19-linux-tools-pkgs -------------------------------------------------------------------------------- /scripts/rootfs.d/20-packages-00-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/20-packages-00-uninstall -------------------------------------------------------------------------------- /scripts/rootfs.d/20-packages-01-upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/20-packages-01-upgrade -------------------------------------------------------------------------------- /scripts/rootfs.d/20-packages-02-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/20-packages-02-install -------------------------------------------------------------------------------- /scripts/rootfs.d/30-ccache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-ccache -------------------------------------------------------------------------------- /scripts/rootfs.d/30-desktop-install-dconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-desktop-install-dconf -------------------------------------------------------------------------------- /scripts/rootfs.d/30-desktop-install-indicator-multiload-autostart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-desktop-install-indicator-multiload-autostart -------------------------------------------------------------------------------- /scripts/rootfs.d/30-desktop-remove-amazon-icon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-desktop-remove-amazon-icon -------------------------------------------------------------------------------- /scripts/rootfs.d/30-desktop-remove-examples-shortcut: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-desktop-remove-examples-shortcut -------------------------------------------------------------------------------- /scripts/rootfs.d/30-ferm-iptables: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-ferm-iptables -------------------------------------------------------------------------------- /scripts/rootfs.d/30-linux-tools: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-linux-tools -------------------------------------------------------------------------------- /scripts/rootfs.d/30-network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-network -------------------------------------------------------------------------------- /scripts/rootfs.d/30-tor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-tor -------------------------------------------------------------------------------- /scripts/rootfs.d/30-unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-unity -------------------------------------------------------------------------------- /scripts/rootfs.d/30-unity-disable-scopes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/30-unity-disable-scopes -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-config-files: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-config-files -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-desktop-shortcuts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-desktop-shortcuts -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-documentation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-documentation -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-guided-tutorials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-guided-tutorials -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-homedir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-homedir -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-logo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-logo -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-mozilla-profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-mozilla-profile -------------------------------------------------------------------------------- /scripts/rootfs.d/40-gnuradio-themes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/40-gnuradio-themes -------------------------------------------------------------------------------- /scripts/rootfs.d/50-pybombs-00-install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/50-pybombs-00-install -------------------------------------------------------------------------------- /scripts/rootfs.d/50-pybombs-10-install-apps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/50-pybombs-10-install-apps -------------------------------------------------------------------------------- /scripts/rootfs.d/60-jupyter-notebook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/60-jupyter-notebook -------------------------------------------------------------------------------- /scripts/rootfs.d/80-packages-00-uninstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/80-packages-00-uninstall -------------------------------------------------------------------------------- /scripts/rootfs.d/90-apt-cleanup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/90-apt-cleanup -------------------------------------------------------------------------------- /scripts/rootfs.d/90-regen-initramfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/90-regen-initramfs -------------------------------------------------------------------------------- /scripts/rootfs.d/99-clean-rootfs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnuradio/gnuradio-livesdr/HEAD/scripts/rootfs.d/99-clean-rootfs -------------------------------------------------------------------------------- /stamps/.gitignore: -------------------------------------------------------------------------------- 1 | *.stamp --------------------------------------------------------------------------------