These are in files or parts of files that are not part of the checksums, or that serve as packaging-information only. Thus, require no rebuild
10 lines
348 B
Bash
10 lines
348 B
Bash
#!/bin/sh
|
|
|
|
# legacy u-boot images are no longer necessary, but were generated outside of
|
|
# packaging so remove them here to prevent a failed upgrade if /boot is too
|
|
# full
|
|
# see: https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/2449
|
|
rm -f /boot/uImage-postmarketos-allwinner
|
|
rm -f /boot/uInitrd-postmarketos-allwinner
|
|
|
|
exit 0
|