This script takes values from files stored in the FAT32 partition to set
up Wi-Fi and override/add settings to default retroarch.cfg.
inspired by the solution from @macmoritz
* Switch: Bootloader: Fix boot.scr issues, fix issue in updater, and bump package version
* Joycond: Switch: Update
* L4T: Switch: Retroarch: Add patch to fix single joycon detection
This patch is included in upstream PR #15818
* Lakka: Wii-u-gc-adapter: Enable service when building image
* L4T: Switch: Add wii-u-gc-adapter to build
* L4T: Switch: retroarch add canary support to updater
* Lakka: Retroarch: Add Canary path support for updater
* Retroarch: Switch: Add patch for canary builds
* L4T: BusyBox: Fix Password Generation
* Busybox: Make DISTRO user password creation match switch busybox package
* L4T: tegra-bsp: Update 10-monitor.conf to fix vsync/tearing issues
* Latest 4.3 changes poorly merged
* Build fixes
* Squash?
* Fix ppsspp on switch
* Fix video recording, add base stuff for nvv4l2 decoder/encoder, but leave disabled for now
* Clean up left over files
* Switch: Dont build xpadneo driver, but install configs
* FFMpeg: Add back L4T decoder Patches
For the logfiles share, the createlog script will create /storage/logfiles
before moving the zipped logs there.
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
Only create a logfile for the previous boot if persistent journal
is being used.
Also applies some changes for shellcheck warnings:
`...` to $(...)
Verifying variable is set ${var:?} before rm'ing
Useless use of cat
Command grouping when the commands redirect to the same file
Use of == in [...]
[ test1 -a test2 ] to [ test1 ] && [ test2 ]
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
* libglvnd: add back exception for L4T and Ayn
* xorg-launch-helper: special case for odin
* Odin: fix retroarch assets path
* busybox: add odin-workaround to init script
* xorg-server: add rotation patch
* xorg-server: don't move libglx.so for odin
* xorg-server: remove dangling if from xorg-configure
* Initial fully buildable/bootable Odin Support
* Rework NX-Boot to FAT32 Boot for shared usage between switch and odin
* Move shared packages from switch/odin to main packages folder
* Update kernel Config/patches for CEC support
* Add base CEC support to dock-hotplug, and make so support can be disabled via uenv.txt
* Add working libcec package for L4T, and enable CEC support in packages.
* Fix pulseaudio-alsa routing
This fixes using other audio backends(Alsathread, Alsa, TinyAlsa) in retroarch via dock or bluetooth.
* Downgrade GCC in L4T builds
This fixes issues revolving around undefined symbol: __aarch64_ldadd4_acq_rel issue with gcc 10
* Fix updater for switch builds
Only tested working with tar archives.
* Edit retroarch default settings for the switch.
* Fix pulseaudio changing sink volume issues.
* Downgrade glibc to 2.27 for L4T Builds.
* Downgrade binutils to 2.32 for L4T Builds.
* Update L4T Project Options
* Refactor tegra-bsp package
* Import/Rebase CTC's ffmpeg patches, and switch decoder to nvv4l2 from nvmpi. Fixes decoder issues
* Enable all disabled cores
* Remove hack in busybox package to dump firmware into L4T Builds, we now handle this in tegra-bsp package.
* More L4T project cleanups
* Bring switch-bootloader package.mk inline with upstream formatting
* Fix reboot_payload
* Add proper tegra-bsp:init support
* Bootloader cleanups, seperate bootloader stuff for libreelec builds
* Update init for supporting all distros on Nintendo Switch
* Add proper splash images for libreelec builds.
* Final bootloader fixes
* switch-bootloader-merge-fixes
* Fix uboot merge issues
* fix bmp
* It all builds
* add Basic USB Gadget(Serial console only)
* Properly fix mtp, and finish gadget stuff
busybox:host installs two binaries into $TOOLCHAIN:
arch - the same as "uname -m"
cryptpw - generates password hashes - replaced with python
Signed-off-by: Ian Leonard <antonlacon@gmail.com>
Python3's crypt module is capable of generating password hashes. Use that
instead of busybox:host's cryptpw function.
Move password hashing into config/function's add_user(), so one need not
remember to generate the hash and then pass it into add_user().
Signed-off-by: Ian Leonard <antonlacon@gmail.com>