Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion linbofs/usr/bin/linbo_download_image
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ if [ -z "$DOWNLOAD" ]; then
fi

# download postsync and reg files in any case
for ext in postsync reg; do
for ext in postsync driverpostsync reg; do
for base in "$FILE" "$imagebase"; do
echo -n "Trying to download ${base}.${ext} ... "
if linbo_download "${subdir}${base}.${ext}" &> /dev/null; then
Expand Down
4 changes: 4 additions & 0 deletions linbofs/usr/bin/linbo_sync
Original file line number Diff line number Diff line change
Expand Up @@ -633,6 +633,10 @@ syncl(){
# source postsync script
[ -s "/cache/$postsync" ] && . "/cache/$postsync"

# source driver postsync script (patchless driver matching)
local driverpostsync="${imagebase}.driverpostsync"
[ -s "/cache/$driverpostsync" ] && . "/cache/$driverpostsync"

# finally do minimal boot configuration
mk_boot || RC=1

Expand Down