├── 3rdparty ├── readme.txt └── xinput_calibrator_pointercal.sh ├── boot ├── am335x_evm.sh ├── autoconfigure_usb0.sh ├── autoconfigure_usb1.sh ├── bbai.sh ├── bbai_SoftAp0.sh ├── bbai_bluetooth_main.conf ├── bbai_bluetooth_nap.sh ├── bbai_dnsmasq.conf ├── bbai_hostapd.conf ├── bbai_usb_gadget.sh ├── bbai_usb_host.sh ├── beagle_x15.sh ├── capemgr.sh ├── default │ ├── bb-boot │ └── robotcontrol_modules.conf ├── generic-startup.sh ├── generic.sh ├── legacy │ ├── old_cape_universal.sh │ ├── old_debug_permissions.sh │ ├── old_resize.sh │ ├── write_eeprom.sh │ └── write_emmc.sh ├── omap3_beagle.sh └── omap5_uevm.sh ├── desktop-defaults ├── buster │ ├── lxqt │ │ ├── lxqt │ │ │ ├── filedialog.conf │ │ │ ├── globalkeyshortcuts.conf │ │ │ ├── lxqt-config-appearance.conf │ │ │ ├── lxqt-config.conf │ │ │ ├── lxqt-powermanagement.conf │ │ │ ├── lxqt-runner.conf │ │ │ ├── lxqt.conf │ │ │ ├── notifications.conf │ │ │ ├── panel.conf │ │ │ ├── power.conf │ │ │ ├── session.conf │ │ │ └── windowmanagers.conf │ │ └── pcmanfm-qt │ │ │ └── lxqt │ │ │ └── settings.conf │ └── reset_lxqt.sh ├── jessie │ ├── lxqt │ │ ├── lxqt │ │ │ ├── desktop.conf │ │ │ ├── globalkeyshortcuts.conf │ │ │ ├── lxqt-runner.conf │ │ │ ├── lxqt.conf │ │ │ ├── notifications.conf │ │ │ ├── panel.conf │ │ │ ├── power.conf │ │ │ └── session.conf │ │ ├── openbox │ │ │ └── rc.xml │ │ └── pcmanfm-qt │ │ │ └── lxqt │ │ │ └── settings.conf │ └── reset_lxqt.sh └── stretch │ ├── lxqt │ ├── lxqt │ │ ├── lxqt-config.conf │ │ ├── lxqt-runner.conf │ │ ├── lxqt.conf │ │ ├── panel.conf │ │ ├── power.conf │ │ └── session.conf │ └── pcmanfm-qt │ │ └── lxqt │ │ └── settings.conf │ └── reset_lxqt.sh ├── device ├── bbai │ └── firmware │ │ ├── brcmfmac43455-sdio.beagleboard.org,am5729-beagleboneai.txt │ │ ├── brcmfmac43455-sdio.bin │ │ ├── brcmfmac43455-sdio.clm_blob │ │ ├── brcmfmac43455-sdio.txt │ │ ├── copy.sh │ │ └── fw_bcm43455c0_ag.bin ├── bbai64 │ └── BBAI64-eeprom.dump ├── blue │ └── enable_balance.sh ├── bone │ ├── A335-eeprom.dump │ ├── abbbi-eeprom.dump │ ├── bbb-eeprom.dump │ ├── bbbl-eeprom.dump │ ├── bbbw-eeprom.dump │ ├── bbg-eeprom.dump │ ├── bbgw-eeprom.dump │ ├── bbgw │ │ ├── WL1835MOD_INI_C2PC.ini │ │ ├── generate.sh │ │ └── wl18xx-conf.bin │ ├── blgc-eeprom.dump │ ├── bp00-eeprom.dump │ ├── capes │ │ ├── BB-BEAGLELOGIC │ │ │ ├── beaglelogic-pru0 │ │ │ └── beaglelogic-pru1 │ │ ├── BB-CAPE-DISP-CT4 │ │ │ └── eeprom.dump │ │ ├── BBB_Audio_Cape_RevB │ │ │ └── asound.state │ │ ├── BeagleBoard.org │ │ │ ├── A1Fan_Cape.dump │ │ │ ├── BC02.dump │ │ │ ├── BC03.dump │ │ │ ├── BC07.dump │ │ │ └── example.dump │ │ ├── DLPDLCR2000 │ │ │ ├── CmdHandler.py │ │ │ ├── CmdStatus.py │ │ │ ├── Constants.py │ │ │ ├── Curtain.py │ │ │ ├── Environmental.py │ │ │ ├── ExtProjOnOff.py │ │ │ ├── LEDSet.py │ │ │ ├── LEDTest.py │ │ │ ├── Look.py │ │ │ ├── MplayerTest.py │ │ │ ├── Park.py │ │ │ ├── ProjCntl.py │ │ │ ├── README.txt │ │ │ ├── ReadCCA.py │ │ │ ├── ReadEEPROMBBB.py │ │ │ ├── Splash.py │ │ │ ├── SpotCheck.py │ │ │ ├── Status.py │ │ │ ├── SystemReset.py │ │ │ ├── TPGTest.py │ │ │ ├── control.py │ │ │ ├── dlp_lightcrafter-1.0.19.tar.gz │ │ │ ├── eeprom.dump │ │ │ ├── nhd_test.mp4 │ │ │ └── structured_light │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── display_app.c │ │ │ │ ├── display_app.h │ │ │ │ ├── display_core.c │ │ │ │ ├── display_core.h │ │ │ │ ├── open_bmp.c │ │ │ │ └── open_bmp.h │ │ ├── ISM4334X │ │ │ ├── ISM4334X_NVRAM_C1.txt │ │ │ ├── ISM4334X_Wifi_FW_6.20.225.2_P.bin │ │ │ └── install.sh │ │ ├── ISM43362 │ │ │ ├── ISM43362_NVRAM_C1.txt │ │ │ ├── ISM43362_WiFi_FW_5.90.225.0_P.bin │ │ │ └── install.sh │ │ ├── ISM4343W │ │ │ ├── 4343w_bcmdhd.txt │ │ │ ├── 4343w_fw_bcmdhd.bin │ │ │ └── install.sh │ │ ├── cape_eeprom_check.sh │ │ ├── dksb1017 │ │ │ └── dksb1017.eeprom │ │ └── readme │ ├── eeprom_database.txt │ ├── m10a-eeprom.dump │ ├── me06-eeprom.dump │ ├── osd3358-sm-red-eeprom.dump │ ├── pru-rpmsg_client_sample │ │ ├── am335x-pru0-fw │ │ └── am335x-pru1-fw │ ├── show-pins-install.sh │ └── tester │ │ ├── eeprom-blank.sh │ │ ├── eeprom-u-boot.sh │ │ └── show-eeprom.sh └── x15 │ ├── PM_A3-eeprom.dump │ ├── SB_A-eeprom.dump │ ├── X15_B1-eeprom.dump │ ├── X15_C-eeprom.dump │ ├── eeprom │ └── eeprom-blank.sh │ ├── pru-rpmsg_client_sample │ ├── am57xx-pru1_0-fw │ ├── am57xx-pru1_1-fw │ ├── am57xx-pru2_0-fw │ └── am57xx-pru2_1-fw │ ├── show-eeprom.sh │ ├── test_audio_jacks.sh │ ├── test_dual_eth.sh │ └── test_thermal.sh ├── distro ├── bionic │ └── nginx │ │ └── default └── buster │ └── nginx │ └── default ├── images ├── beaglebg-eMMC.jpg └── beaglebg.jpg ├── mods ├── cloud9-systemd-fix.diff ├── debian-add-sbin-usr-sbin-to-default-path.diff ├── jessie-systemd-poweroff.diff ├── node-red │ ├── node-red-0.10.10.patch │ ├── node-red-0.11.2.patch │ ├── node-red-0.12.5.patch │ ├── node-red-0.13.1.patch │ └── node-red-0.9.1-nocolors.patch └── wheezy-systemd-poweroff.diff ├── network ├── doc-debian-setup.md ├── usb_linux_usb0_ics.sh ├── usb_linux_usb1_ics.sh ├── usb_mac_ics.sh ├── usb_windows_ics.sh └── wifi_enterprise.sh ├── tools ├── beaglebone-black-eMMC-flasher.sh ├── config_checking │ └── docker │ │ ├── check-config.sh │ │ ├── grab.sh │ │ └── readme.md ├── developers │ ├── apt-proxy.sh │ ├── fake_ntp.sh │ ├── nfs-rsync.sh │ ├── rcnee-testing.sh │ ├── secondary_rootfs.sh │ ├── update_bootloader.sh │ └── update_initrd.sh ├── dtc │ └── dtc-3.8.x.sh ├── eMMC │ ├── bbb-eMMC-flasher-eewiki-12mb.sh │ ├── bbb-eMMC-flasher-eewiki-ext4.sh │ ├── beaglebone-black-make-microSD-flasher-from-eMMC.sh │ ├── functions.sh │ ├── init-eMMC-flasher-a335.sh │ ├── init-eMMC-flasher-bp00.sh │ ├── init-eMMC-flasher-from-usb-media-v1-bbgw.sh │ ├── init-eMMC-flasher-from-usb-media-v2-bbgw.sh │ ├── init-eMMC-flasher-from-usb-media.sh │ ├── init-eMMC-flasher-v2.sh │ ├── init-eMMC-flasher-v3-bbbl.sh │ ├── init-eMMC-flasher-v3-bbbw.sh │ ├── init-eMMC-flasher-v3-bbg.sh │ ├── init-eMMC-flasher-v3-bbgw.sh │ ├── init-eMMC-flasher-v3-m10a.sh │ ├── init-eMMC-flasher-v3-me06.sh │ ├── init-eMMC-flasher-v3-no-eeprom.sh │ ├── init-eMMC-flasher-v3-x15_b1.sh │ ├── init-eMMC-flasher-v3.sh │ ├── mmc_resize_usbflasher_example.md │ ├── mmc_usbflasher_example.md │ └── readme.md ├── generate_extlinux.sh ├── graphics │ ├── fsl-etnaviv.sh │ ├── fsl-imx-drm.sh │ ├── ti-omapdrm.sh │ └── ti-tilcdc.sh ├── grow_partition.sh ├── init-eMMC-flasher.sh ├── non-mmc-rootfs │ └── mv_rootfs_dev_sda.sh ├── readme.txt ├── software │ ├── add_nodesource_repo.sh │ ├── hologram-tools │ │ ├── .gitignore │ │ ├── README.md │ │ ├── imported_from.txt │ │ └── ppp │ │ │ ├── chatscripts │ │ │ ├── e303 │ │ │ ├── ms2131 │ │ │ ├── nova │ │ │ └── nova-m │ │ │ └── peers │ │ │ ├── e303 │ │ │ ├── nova │ │ │ └── nova-m │ └── mjpg-streamer │ │ ├── README.md │ │ ├── install_mjpg_streamer.sh │ │ ├── mjpg-streamer.rules │ │ └── mjpg-streamer.service ├── update_kernel.sh ├── version.sh └── wm │ ├── efl.sh │ ├── kwin.sh │ ├── lxde.sh │ ├── lxqt.sh │ ├── maynard.sh │ ├── weston-drm.sh │ ├── weston-fbdev.sh │ └── weston.sh └── un-tweak-image ├── debian-re-secure-root-ssh.sh └── disable-bonescript-renable-apache-port-80.sh /3rdparty/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/3rdparty/readme.txt -------------------------------------------------------------------------------- /3rdparty/xinput_calibrator_pointercal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/3rdparty/xinput_calibrator_pointercal.sh -------------------------------------------------------------------------------- /boot/am335x_evm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/am335x_evm.sh -------------------------------------------------------------------------------- /boot/autoconfigure_usb0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/autoconfigure_usb0.sh -------------------------------------------------------------------------------- /boot/autoconfigure_usb1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/autoconfigure_usb1.sh -------------------------------------------------------------------------------- /boot/bbai.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai.sh -------------------------------------------------------------------------------- /boot/bbai_SoftAp0.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai_SoftAp0.sh -------------------------------------------------------------------------------- /boot/bbai_bluetooth_main.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai_bluetooth_main.conf -------------------------------------------------------------------------------- /boot/bbai_bluetooth_nap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai_bluetooth_nap.sh -------------------------------------------------------------------------------- /boot/bbai_dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai_dnsmasq.conf -------------------------------------------------------------------------------- /boot/bbai_hostapd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai_hostapd.conf -------------------------------------------------------------------------------- /boot/bbai_usb_gadget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai_usb_gadget.sh -------------------------------------------------------------------------------- /boot/bbai_usb_host.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/bbai_usb_host.sh -------------------------------------------------------------------------------- /boot/beagle_x15.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/beagle_x15.sh -------------------------------------------------------------------------------- /boot/capemgr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/capemgr.sh -------------------------------------------------------------------------------- /boot/default/bb-boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/default/bb-boot -------------------------------------------------------------------------------- /boot/default/robotcontrol_modules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/default/robotcontrol_modules.conf -------------------------------------------------------------------------------- /boot/generic-startup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/generic-startup.sh -------------------------------------------------------------------------------- /boot/generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/generic.sh -------------------------------------------------------------------------------- /boot/legacy/old_cape_universal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/legacy/old_cape_universal.sh -------------------------------------------------------------------------------- /boot/legacy/old_debug_permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/legacy/old_debug_permissions.sh -------------------------------------------------------------------------------- /boot/legacy/old_resize.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/legacy/old_resize.sh -------------------------------------------------------------------------------- /boot/legacy/write_eeprom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/legacy/write_eeprom.sh -------------------------------------------------------------------------------- /boot/legacy/write_emmc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/legacy/write_emmc.sh -------------------------------------------------------------------------------- /boot/omap3_beagle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/omap3_beagle.sh -------------------------------------------------------------------------------- /boot/omap5_uevm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/boot/omap5_uevm.sh -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/filedialog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/buster/lxqt/lxqt/filedialog.conf -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/globalkeyshortcuts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/buster/lxqt/lxqt/globalkeyshortcuts.conf -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/lxqt-config-appearance.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | ControlGTKThemeEnabled=false 3 | __userfile__=true 4 | -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/lxqt-config.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | size=@Size(696 404) 3 | -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/lxqt-powermanagement.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/buster/lxqt/lxqt/lxqt-powermanagement.conf -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/lxqt-runner.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/lxqt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/buster/lxqt/lxqt/lxqt.conf -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/notifications.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/panel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/buster/lxqt/lxqt/panel.conf -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/power.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/session.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | window_manager=xfwm4 4 | -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/lxqt/windowmanagers.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/buster/lxqt/pcmanfm-qt/lxqt/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/buster/lxqt/pcmanfm-qt/lxqt/settings.conf -------------------------------------------------------------------------------- /desktop-defaults/buster/reset_lxqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/buster/reset_lxqt.sh -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/desktop.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/globalkeyshortcuts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/jessie/lxqt/lxqt/globalkeyshortcuts.conf -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/lxqt-runner.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/lxqt.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/notifications.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/panel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/jessie/lxqt/lxqt/panel.conf -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/power.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/lxqt/session.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/jessie/lxqt/lxqt/session.conf -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/openbox/rc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/jessie/lxqt/openbox/rc.xml -------------------------------------------------------------------------------- /desktop-defaults/jessie/lxqt/pcmanfm-qt/lxqt/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/jessie/lxqt/pcmanfm-qt/lxqt/settings.conf -------------------------------------------------------------------------------- /desktop-defaults/jessie/reset_lxqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/jessie/reset_lxqt.sh -------------------------------------------------------------------------------- /desktop-defaults/stretch/lxqt/lxqt/lxqt-config.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | size=@Size(696 404) 3 | -------------------------------------------------------------------------------- /desktop-defaults/stretch/lxqt/lxqt/lxqt-runner.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/stretch/lxqt/lxqt/lxqt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/stretch/lxqt/lxqt/lxqt.conf -------------------------------------------------------------------------------- /desktop-defaults/stretch/lxqt/lxqt/panel.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/stretch/lxqt/lxqt/panel.conf -------------------------------------------------------------------------------- /desktop-defaults/stretch/lxqt/lxqt/power.conf: -------------------------------------------------------------------------------- 1 | [General] 2 | __userfile__=true 3 | -------------------------------------------------------------------------------- /desktop-defaults/stretch/lxqt/lxqt/session.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/stretch/lxqt/lxqt/session.conf -------------------------------------------------------------------------------- /desktop-defaults/stretch/lxqt/pcmanfm-qt/lxqt/settings.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/stretch/lxqt/pcmanfm-qt/lxqt/settings.conf -------------------------------------------------------------------------------- /desktop-defaults/stretch/reset_lxqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/desktop-defaults/stretch/reset_lxqt.sh -------------------------------------------------------------------------------- /device/bbai/firmware/brcmfmac43455-sdio.beagleboard.org,am5729-beagleboneai.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bbai/firmware/brcmfmac43455-sdio.beagleboard.org,am5729-beagleboneai.txt -------------------------------------------------------------------------------- /device/bbai/firmware/brcmfmac43455-sdio.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bbai/firmware/brcmfmac43455-sdio.bin -------------------------------------------------------------------------------- /device/bbai/firmware/brcmfmac43455-sdio.clm_blob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bbai/firmware/brcmfmac43455-sdio.clm_blob -------------------------------------------------------------------------------- /device/bbai/firmware/brcmfmac43455-sdio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bbai/firmware/brcmfmac43455-sdio.txt -------------------------------------------------------------------------------- /device/bbai/firmware/copy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bbai/firmware/copy.sh -------------------------------------------------------------------------------- /device/bbai/firmware/fw_bcm43455c0_ag.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bbai/firmware/fw_bcm43455c0_ag.bin -------------------------------------------------------------------------------- /device/bbai64/BBAI64-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bbai64/BBAI64-eeprom.dump -------------------------------------------------------------------------------- /device/blue/enable_balance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/blue/enable_balance.sh -------------------------------------------------------------------------------- /device/bone/A335-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/A335-eeprom.dump -------------------------------------------------------------------------------- /device/bone/abbbi-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/abbbi-eeprom.dump -------------------------------------------------------------------------------- /device/bone/bbb-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbb-eeprom.dump -------------------------------------------------------------------------------- /device/bone/bbbl-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbbl-eeprom.dump -------------------------------------------------------------------------------- /device/bone/bbbw-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbbw-eeprom.dump -------------------------------------------------------------------------------- /device/bone/bbg-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbg-eeprom.dump -------------------------------------------------------------------------------- /device/bone/bbgw-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbgw-eeprom.dump -------------------------------------------------------------------------------- /device/bone/bbgw/WL1835MOD_INI_C2PC.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbgw/WL1835MOD_INI_C2PC.ini -------------------------------------------------------------------------------- /device/bone/bbgw/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbgw/generate.sh -------------------------------------------------------------------------------- /device/bone/bbgw/wl18xx-conf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bbgw/wl18xx-conf.bin -------------------------------------------------------------------------------- /device/bone/blgc-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/blgc-eeprom.dump -------------------------------------------------------------------------------- /device/bone/bp00-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/bp00-eeprom.dump -------------------------------------------------------------------------------- /device/bone/capes/BB-BEAGLELOGIC/beaglelogic-pru0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BB-BEAGLELOGIC/beaglelogic-pru0 -------------------------------------------------------------------------------- /device/bone/capes/BB-BEAGLELOGIC/beaglelogic-pru1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BB-BEAGLELOGIC/beaglelogic-pru1 -------------------------------------------------------------------------------- /device/bone/capes/BB-CAPE-DISP-CT4/eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BB-CAPE-DISP-CT4/eeprom.dump -------------------------------------------------------------------------------- /device/bone/capes/BBB_Audio_Cape_RevB/asound.state: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BBB_Audio_Cape_RevB/asound.state -------------------------------------------------------------------------------- /device/bone/capes/BeagleBoard.org/A1Fan_Cape.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BeagleBoard.org/A1Fan_Cape.dump -------------------------------------------------------------------------------- /device/bone/capes/BeagleBoard.org/BC02.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BeagleBoard.org/BC02.dump -------------------------------------------------------------------------------- /device/bone/capes/BeagleBoard.org/BC03.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BeagleBoard.org/BC03.dump -------------------------------------------------------------------------------- /device/bone/capes/BeagleBoard.org/BC07.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BeagleBoard.org/BC07.dump -------------------------------------------------------------------------------- /device/bone/capes/BeagleBoard.org/example.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/BeagleBoard.org/example.dump -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/CmdHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/CmdHandler.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/CmdStatus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/CmdStatus.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/Constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/Constants.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/Curtain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/Curtain.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/Environmental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/Environmental.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/ExtProjOnOff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/ExtProjOnOff.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/LEDSet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/LEDSet.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/LEDTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/LEDTest.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/Look.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/Look.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/MplayerTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/MplayerTest.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/Park.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/Park.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/ProjCntl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/ProjCntl.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/README.txt -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/ReadCCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/ReadCCA.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/ReadEEPROMBBB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/ReadEEPROMBBB.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/Splash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/Splash.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/SpotCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/SpotCheck.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/Status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/Status.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/SystemReset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/SystemReset.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/TPGTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/TPGTest.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/control.py -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/dlp_lightcrafter-1.0.19.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/dlp_lightcrafter-1.0.19.tar.gz -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/eeprom.dump -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/nhd_test.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/nhd_test.mp4 -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/Makefile -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/README.md -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/display_app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/display_app.c -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/display_app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/display_app.h -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/display_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/display_core.c -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/display_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/display_core.h -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/open_bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/open_bmp.c -------------------------------------------------------------------------------- /device/bone/capes/DLPDLCR2000/structured_light/open_bmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/DLPDLCR2000/structured_light/open_bmp.h -------------------------------------------------------------------------------- /device/bone/capes/ISM4334X/ISM4334X_NVRAM_C1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM4334X/ISM4334X_NVRAM_C1.txt -------------------------------------------------------------------------------- /device/bone/capes/ISM4334X/ISM4334X_Wifi_FW_6.20.225.2_P.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM4334X/ISM4334X_Wifi_FW_6.20.225.2_P.bin -------------------------------------------------------------------------------- /device/bone/capes/ISM4334X/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM4334X/install.sh -------------------------------------------------------------------------------- /device/bone/capes/ISM43362/ISM43362_NVRAM_C1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM43362/ISM43362_NVRAM_C1.txt -------------------------------------------------------------------------------- /device/bone/capes/ISM43362/ISM43362_WiFi_FW_5.90.225.0_P.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM43362/ISM43362_WiFi_FW_5.90.225.0_P.bin -------------------------------------------------------------------------------- /device/bone/capes/ISM43362/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM43362/install.sh -------------------------------------------------------------------------------- /device/bone/capes/ISM4343W/4343w_bcmdhd.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM4343W/4343w_bcmdhd.txt -------------------------------------------------------------------------------- /device/bone/capes/ISM4343W/4343w_fw_bcmdhd.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM4343W/4343w_fw_bcmdhd.bin -------------------------------------------------------------------------------- /device/bone/capes/ISM4343W/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/ISM4343W/install.sh -------------------------------------------------------------------------------- /device/bone/capes/cape_eeprom_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/cape_eeprom_check.sh -------------------------------------------------------------------------------- /device/bone/capes/dksb1017/dksb1017.eeprom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/capes/dksb1017/dksb1017.eeprom -------------------------------------------------------------------------------- /device/bone/capes/readme: -------------------------------------------------------------------------------- 1 | A place for bone test scripts 2 | -------------------------------------------------------------------------------- /device/bone/eeprom_database.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/eeprom_database.txt -------------------------------------------------------------------------------- /device/bone/m10a-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/m10a-eeprom.dump -------------------------------------------------------------------------------- /device/bone/me06-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/me06-eeprom.dump -------------------------------------------------------------------------------- /device/bone/osd3358-sm-red-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/osd3358-sm-red-eeprom.dump -------------------------------------------------------------------------------- /device/bone/pru-rpmsg_client_sample/am335x-pru0-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/pru-rpmsg_client_sample/am335x-pru0-fw -------------------------------------------------------------------------------- /device/bone/pru-rpmsg_client_sample/am335x-pru1-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/pru-rpmsg_client_sample/am335x-pru1-fw -------------------------------------------------------------------------------- /device/bone/show-pins-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/show-pins-install.sh -------------------------------------------------------------------------------- /device/bone/tester/eeprom-blank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/tester/eeprom-blank.sh -------------------------------------------------------------------------------- /device/bone/tester/eeprom-u-boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/tester/eeprom-u-boot.sh -------------------------------------------------------------------------------- /device/bone/tester/show-eeprom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/bone/tester/show-eeprom.sh -------------------------------------------------------------------------------- /device/x15/PM_A3-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/PM_A3-eeprom.dump -------------------------------------------------------------------------------- /device/x15/SB_A-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/SB_A-eeprom.dump -------------------------------------------------------------------------------- /device/x15/X15_B1-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/X15_B1-eeprom.dump -------------------------------------------------------------------------------- /device/x15/X15_C-eeprom.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/X15_C-eeprom.dump -------------------------------------------------------------------------------- /device/x15/eeprom/eeprom-blank.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/eeprom/eeprom-blank.sh -------------------------------------------------------------------------------- /device/x15/pru-rpmsg_client_sample/am57xx-pru1_0-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/pru-rpmsg_client_sample/am57xx-pru1_0-fw -------------------------------------------------------------------------------- /device/x15/pru-rpmsg_client_sample/am57xx-pru1_1-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/pru-rpmsg_client_sample/am57xx-pru1_1-fw -------------------------------------------------------------------------------- /device/x15/pru-rpmsg_client_sample/am57xx-pru2_0-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/pru-rpmsg_client_sample/am57xx-pru2_0-fw -------------------------------------------------------------------------------- /device/x15/pru-rpmsg_client_sample/am57xx-pru2_1-fw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/pru-rpmsg_client_sample/am57xx-pru2_1-fw -------------------------------------------------------------------------------- /device/x15/show-eeprom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/show-eeprom.sh -------------------------------------------------------------------------------- /device/x15/test_audio_jacks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/test_audio_jacks.sh -------------------------------------------------------------------------------- /device/x15/test_dual_eth.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/test_dual_eth.sh -------------------------------------------------------------------------------- /device/x15/test_thermal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/device/x15/test_thermal.sh -------------------------------------------------------------------------------- /distro/bionic/nginx/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/distro/bionic/nginx/default -------------------------------------------------------------------------------- /distro/buster/nginx/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/distro/buster/nginx/default -------------------------------------------------------------------------------- /images/beaglebg-eMMC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/images/beaglebg-eMMC.jpg -------------------------------------------------------------------------------- /images/beaglebg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/images/beaglebg.jpg -------------------------------------------------------------------------------- /mods/cloud9-systemd-fix.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/cloud9-systemd-fix.diff -------------------------------------------------------------------------------- /mods/debian-add-sbin-usr-sbin-to-default-path.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/debian-add-sbin-usr-sbin-to-default-path.diff -------------------------------------------------------------------------------- /mods/jessie-systemd-poweroff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/jessie-systemd-poweroff.diff -------------------------------------------------------------------------------- /mods/node-red/node-red-0.10.10.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/node-red/node-red-0.10.10.patch -------------------------------------------------------------------------------- /mods/node-red/node-red-0.11.2.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/node-red/node-red-0.11.2.patch -------------------------------------------------------------------------------- /mods/node-red/node-red-0.12.5.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/node-red/node-red-0.12.5.patch -------------------------------------------------------------------------------- /mods/node-red/node-red-0.13.1.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/node-red/node-red-0.13.1.patch -------------------------------------------------------------------------------- /mods/node-red/node-red-0.9.1-nocolors.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/node-red/node-red-0.9.1-nocolors.patch -------------------------------------------------------------------------------- /mods/wheezy-systemd-poweroff.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/mods/wheezy-systemd-poweroff.diff -------------------------------------------------------------------------------- /network/doc-debian-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/network/doc-debian-setup.md -------------------------------------------------------------------------------- /network/usb_linux_usb0_ics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/network/usb_linux_usb0_ics.sh -------------------------------------------------------------------------------- /network/usb_linux_usb1_ics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/network/usb_linux_usb1_ics.sh -------------------------------------------------------------------------------- /network/usb_mac_ics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/network/usb_mac_ics.sh -------------------------------------------------------------------------------- /network/usb_windows_ics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/network/usb_windows_ics.sh -------------------------------------------------------------------------------- /network/wifi_enterprise.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/network/wifi_enterprise.sh -------------------------------------------------------------------------------- /tools/beaglebone-black-eMMC-flasher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/beaglebone-black-eMMC-flasher.sh -------------------------------------------------------------------------------- /tools/config_checking/docker/check-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/config_checking/docker/check-config.sh -------------------------------------------------------------------------------- /tools/config_checking/docker/grab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/config_checking/docker/grab.sh -------------------------------------------------------------------------------- /tools/config_checking/docker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/config_checking/docker/readme.md -------------------------------------------------------------------------------- /tools/developers/apt-proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/developers/apt-proxy.sh -------------------------------------------------------------------------------- /tools/developers/fake_ntp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/developers/fake_ntp.sh -------------------------------------------------------------------------------- /tools/developers/nfs-rsync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/developers/nfs-rsync.sh -------------------------------------------------------------------------------- /tools/developers/rcnee-testing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/developers/rcnee-testing.sh -------------------------------------------------------------------------------- /tools/developers/secondary_rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/developers/secondary_rootfs.sh -------------------------------------------------------------------------------- /tools/developers/update_bootloader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/developers/update_bootloader.sh -------------------------------------------------------------------------------- /tools/developers/update_initrd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/developers/update_initrd.sh -------------------------------------------------------------------------------- /tools/dtc/dtc-3.8.x.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/dtc/dtc-3.8.x.sh -------------------------------------------------------------------------------- /tools/eMMC/bbb-eMMC-flasher-eewiki-12mb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/bbb-eMMC-flasher-eewiki-12mb.sh -------------------------------------------------------------------------------- /tools/eMMC/bbb-eMMC-flasher-eewiki-ext4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/bbb-eMMC-flasher-eewiki-ext4.sh -------------------------------------------------------------------------------- /tools/eMMC/beaglebone-black-make-microSD-flasher-from-eMMC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/beaglebone-black-make-microSD-flasher-from-eMMC.sh -------------------------------------------------------------------------------- /tools/eMMC/functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/functions.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-a335.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-a335.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-bp00.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-bp00.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-from-usb-media-v1-bbgw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-from-usb-media-v1-bbgw.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-from-usb-media-v2-bbgw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-from-usb-media-v2-bbgw.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-from-usb-media.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-from-usb-media.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v2.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-bbbl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-bbbl.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-bbbw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-bbbw.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-bbg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-bbg.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-bbgw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-bbgw.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-m10a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-m10a.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-me06.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-me06.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-no-eeprom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-no-eeprom.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3-x15_b1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3-x15_b1.sh -------------------------------------------------------------------------------- /tools/eMMC/init-eMMC-flasher-v3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/init-eMMC-flasher-v3.sh -------------------------------------------------------------------------------- /tools/eMMC/mmc_resize_usbflasher_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/mmc_resize_usbflasher_example.md -------------------------------------------------------------------------------- /tools/eMMC/mmc_usbflasher_example.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/mmc_usbflasher_example.md -------------------------------------------------------------------------------- /tools/eMMC/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/eMMC/readme.md -------------------------------------------------------------------------------- /tools/generate_extlinux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/generate_extlinux.sh -------------------------------------------------------------------------------- /tools/graphics/fsl-etnaviv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/graphics/fsl-etnaviv.sh -------------------------------------------------------------------------------- /tools/graphics/fsl-imx-drm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/graphics/fsl-imx-drm.sh -------------------------------------------------------------------------------- /tools/graphics/ti-omapdrm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/graphics/ti-omapdrm.sh -------------------------------------------------------------------------------- /tools/graphics/ti-tilcdc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/graphics/ti-tilcdc.sh -------------------------------------------------------------------------------- /tools/grow_partition.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/grow_partition.sh -------------------------------------------------------------------------------- /tools/init-eMMC-flasher.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/init-eMMC-flasher.sh -------------------------------------------------------------------------------- /tools/non-mmc-rootfs/mv_rootfs_dev_sda.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/non-mmc-rootfs/mv_rootfs_dev_sda.sh -------------------------------------------------------------------------------- /tools/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/readme.txt -------------------------------------------------------------------------------- /tools/software/add_nodesource_repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/add_nodesource_repo.sh -------------------------------------------------------------------------------- /tools/software/hologram-tools/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/.gitignore -------------------------------------------------------------------------------- /tools/software/hologram-tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/README.md -------------------------------------------------------------------------------- /tools/software/hologram-tools/imported_from.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/imported_from.txt -------------------------------------------------------------------------------- /tools/software/hologram-tools/ppp/chatscripts/e303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/ppp/chatscripts/e303 -------------------------------------------------------------------------------- /tools/software/hologram-tools/ppp/chatscripts/ms2131: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/ppp/chatscripts/ms2131 -------------------------------------------------------------------------------- /tools/software/hologram-tools/ppp/chatscripts/nova: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/ppp/chatscripts/nova -------------------------------------------------------------------------------- /tools/software/hologram-tools/ppp/chatscripts/nova-m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/ppp/chatscripts/nova-m -------------------------------------------------------------------------------- /tools/software/hologram-tools/ppp/peers/e303: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/ppp/peers/e303 -------------------------------------------------------------------------------- /tools/software/hologram-tools/ppp/peers/nova: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/ppp/peers/nova -------------------------------------------------------------------------------- /tools/software/hologram-tools/ppp/peers/nova-m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/hologram-tools/ppp/peers/nova-m -------------------------------------------------------------------------------- /tools/software/mjpg-streamer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/mjpg-streamer/README.md -------------------------------------------------------------------------------- /tools/software/mjpg-streamer/install_mjpg_streamer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/mjpg-streamer/install_mjpg_streamer.sh -------------------------------------------------------------------------------- /tools/software/mjpg-streamer/mjpg-streamer.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/mjpg-streamer/mjpg-streamer.rules -------------------------------------------------------------------------------- /tools/software/mjpg-streamer/mjpg-streamer.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/software/mjpg-streamer/mjpg-streamer.service -------------------------------------------------------------------------------- /tools/update_kernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/update_kernel.sh -------------------------------------------------------------------------------- /tools/version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/version.sh -------------------------------------------------------------------------------- /tools/wm/efl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/efl.sh -------------------------------------------------------------------------------- /tools/wm/kwin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/kwin.sh -------------------------------------------------------------------------------- /tools/wm/lxde.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/lxde.sh -------------------------------------------------------------------------------- /tools/wm/lxqt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/lxqt.sh -------------------------------------------------------------------------------- /tools/wm/maynard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/maynard.sh -------------------------------------------------------------------------------- /tools/wm/weston-drm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/weston-drm.sh -------------------------------------------------------------------------------- /tools/wm/weston-fbdev.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/weston-fbdev.sh -------------------------------------------------------------------------------- /tools/wm/weston.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/tools/wm/weston.sh -------------------------------------------------------------------------------- /un-tweak-image/debian-re-secure-root-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/un-tweak-image/debian-re-secure-root-ssh.sh -------------------------------------------------------------------------------- /un-tweak-image/disable-bonescript-renable-apache-port-80.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RobertCNelson/boot-scripts/HEAD/un-tweak-image/disable-bonescript-renable-apache-port-80.sh --------------------------------------------------------------------------------