- Check here for the pinout. You will also need a 1.8V level shifter.
- Go to https://toolchains.bootlin.com
- Select arch: armv7-eabihf
- Select libc: glibc
- Download bleeding-edge
- Uncompress it (for example to
/opt
)
/opt
)@echo off | |
Title w10onARM Setup batch | |
echo Blocking junk apps & echo. | |
reg load HKLM\DEFAULT c:\users\default\ntuser.dat | |
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v PreInstalledAppsEnabled /t REG_DWORD /d 0 /f | |
reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v OemPreInstalledAppsEnabled /t REG_DWORD /d 0 /f | |
reg unload HKLM\DEFAULT | |
echo Removing useless windows components & echo. |
FROM i386/alpine:latest | |
# https://wiki.gentoo.org/wiki/OpenRC/Baselayout_1_to_2_migration#Boot_runlevel | |
# https://wiki.alpinelinux.org/wiki/Installing_Alpine_Linux_in_a_chroot#Entering_your_chroot | |
RUN apk update && \ | |
apk upgrade && \ | |
apk add --no-cache linux-vanilla vim openrc && \ | |
rc-update add devfs sysinit && \ | |
rc-update add root boot && \ |