fb7f99efe2
Unmaintained is a name which on multiple occasions have seen lead to confusion with people having the impression that unmaintained is for all unmaintained devices, which is not how we're really using it. Many devices in testing do not actually have a maintainer, yet there has been no push to move these out of there and into unmaintained. I think this is a result of that unmaintained was introduced not to keep unmaintained ports but rather a place to store ports that have a better replacement but where the inferior one still holds some sort of value, such as for debugging purposes. These ports also are not necessarily entirely unmaintained and see more fixes than many ports in testing. While one approach to solving this problem could be to simply moving all unmaintained ports to unmaintained, I think this comes with some problems: It would require an initial effort to figure out which ports are indeed unmaintained and which just don't have a maintained noted in the package, and given how many ports there are in testing this would be a big endeavour. It would also require continuous work on moving ports into unmaintained as the maintainers go silent if we are to keep testing and unmaintained's state consistent with reality. Additionally, just because a port doesn't have a maintainer on paper doens't mean that there aren't people who aren't willing to fix it up if there are issues that arise. As such, I think the way to go is renaming unmaintained to better reflect the original intent. Thanks to Luca Weiss for suggesting "archive", and to Arnav Singh for suggesting that "archived" would match the other category names better.
29 lines
792 B
Text
29 lines
792 B
Text
#!/stage1/busybox sh
|
|
|
|
# Samsung kernels come with their own initramfs, which extract and load another
|
|
# initramfs. Usually that depends on the recovery key combination being pressed
|
|
# or not. For simplicity, we always boot the recovery image (from the kernel2
|
|
# partition) here.
|
|
|
|
_PATH="$PATH"
|
|
export PATH=/stage1
|
|
|
|
busybox cd /
|
|
busybox date >>boot.txt
|
|
exec >>boot.txt 2>&1
|
|
busybox rm init
|
|
busybox mount -t proc proc /proc
|
|
busybox mount -t sysfs sysfs /sys
|
|
|
|
# always use the "isorec"-style lzop compressed initramfs
|
|
# from the kernel2 partition
|
|
load_image=/stage1/isorec.cpio
|
|
busybox lzop -dc /dev/block/mmcblk0p17 > ${load_image}
|
|
busybox cpio -i < ${load_image}
|
|
|
|
busybox umount /sys
|
|
busybox umount /proc
|
|
busybox date >>boot.txt
|
|
busybox rm -fr /stage1 /dev/*
|
|
export PATH="${_PATH}"
|
|
exec /init
|