UNEXPECTED ERROR OCCURED causing Read-only file system

Asked by Howard C Rosenorn

I tried Linux from Script for the first time today (pulled down the latest tar) and didn't get too far before encounter the above problem. In doing some research I found the solution posed in Question #189185.

The below is what fixed the problem for me.

--- Line 676 ---
OLD: mount -o remount,ro /sources/src
NEW: mount -o remount,ro,bind "${SOURCESDIR}" /sources/src

--- Line 714 ---
OLD: mount -o remount,ro /sources/buildmgr/packages
NEW: mount -o remount,ro,bind "${PACKSDIR}" /sources/buildmgr/packages

My question is, the above Question #189185 is over two years old. Why hasn't this fix be added to the lfscript file?

Question information

Language:
English Edit question
Status:
Solved
For:
LFScript Edit question
Assignee:
No assignee Edit question
Solved by:
Howard C Rosenorn
Solved:
Last query:
Last reply:
Revision history for this message
Howard C Rosenorn (hrosenorn) said :
#1
Revision history for this message
Marcel van den Boer (synthehol) said :
#2

I've applied the fix. Should be avilable in next revision.

Revision history for this message
Howard C Rosenorn (hrosenorn) said :
#3

Thank you!