Skip to content

Commit 5dbaefb

Browse files
committed
Fix A9, update to 6.0.0-rc6
1 parent 0b3e278 commit 5dbaefb

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

build.sh

+6-6
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ fi
6969

7070
# Configure the base system
7171
mkdir -p work/chroot work/iso/live work/iso/boot/grub
72-
debootstrap --variant=minbase --arch="$REPO_ARCH" stable work/chroot 'http://deb.debian.org/debian/'
72+
debootstrap --variant=minbase --arch="$REPO_ARCH" stable work/chroot 'http://mirror.xtom.com.hk/debian/'
7373
mount --bind /proc work/chroot/proc
7474
mount --bind /sys work/chroot/sys
7575
mount --bind /dev work/chroot/dev
@@ -183,11 +183,11 @@ mkdir -p work/chroot/root/odysseyra1n/
183183
cd linux-apple
184184
# Download DeviceTree, 4K, 16K kernels and initramfs.
185185
curl -L -OOOOO \
186-
https://cdn.discordapp.com/attachments/672628720497852459/1010845916309241936/debug_initrd.img \
187-
https://cdn.discordapp.com/attachments/672628720497852459/990614138814349342/Image-4k.lzma \
188-
https://cdn.discordapp.com/attachments/672628720497852459/990614139430899752/Image-16k.lzma \
189-
https://cdn.discordapp.com/attachments/672628720497852459/990614139925852160/dtbpack \
190-
https://cdn.discordapp.com/attachments/672628720497852459/1008915797055389736/Pongo.bin
186+
https://cdn.discordapp.com/attachments/672628720497852459/1023930400365625344/netboot_debug_initrd.img \
187+
https://cdn.discordapp.com/attachments/672628720497852459/1024873433567350794/dtbpack \
188+
https://cdn.discordapp.com/attachments/672628720497852459/1024873433982578718/Image.lzma-16k \
189+
https://cdn.discordapp.com/attachments/672628720497852459/1024873434334892063/Image.lzma-4k \
190+
https://cdn.discordapp.com/attachments/672628720497852459/1025036488414593085/Pongo.bin
191191
)
192192
# Configure autologin
193193
mkdir -p work/chroot/etc/systemd/system/[email protected]

scripts/linux-apple_menu

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ export NEWT_COLORS='root=,black border=white,black window=white,black title=whit
55
whiptail_height="$(($(tput lines) - 6))"
66
whiptail_width="$(($(tput cols) - 20))"
77

8-
CHOICE="$(whiptail --cancel-button 'Back' --title 'Project Sandcastle' --menu 'Linux apple supports all A7-A11 devices except A9, T2, HomePod and Apple TV 4K devices' $whiptail_height $whiptail_width 3 \
9-
'1' 'Start Linux (A7-A8)' \
10-
'2' 'Start Linux (A9X-A11)' 3>&1 1>&2 2>&3)"
8+
CHOICE="$(whiptail --cancel-button 'Back' --title 'Project Sandcastle' --menu 'Linux apple supports all A7-A11 devices except T2, HomePod and Apple TV 4K devices' $whiptail_height $whiptail_width 3 \
9+
'1' 'Start Linux (A7-A8X)' \
10+
'2' 'Start Linux (A9-A11)' 3>&1 1>&2 2>&3)"
1111
case "$CHOICE" in
1212
1)
1313
clear

scripts/start_linux-apple

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ echo 'Please put your device into DFU mode'
1919
echo "Pongo loaded. Give it a second."
2020
echo "/send dtbpack
2121
fdt
22-
/send debug_initrd.img
22+
/send netboot_debug_initrd.img
2323
ramdisk
2424
linux_cmdline PMOS_NO_OUTPUT_REDIRECT panic=5
25-
/send Image-${1}.lzma
25+
/send Image.lzma-${1}
2626
bootl" | pongoterm -n
2727
echo "Starting Linux (Ignore red errors above)..."
2828
sleep 2

0 commit comments

Comments
 (0)