One project I'm working on involves continuously maintaining a base Linux disk image that gets cloned onto embedded devices.

Right now, every time a change is made, we log what we've done in a file and save a copy of the disk image. As a software engineer, however, this flies in the face of conventional practice: using tooling to handle configuration management and control.

Is there good tooling out there that can basically do this at a file level, allowing us to commit/rollback changes to the actual files on the disk for the entire system? Or alternatively, is there something that can handle a huge file better than traditional source code management tools, which aren't exactly designed for giant binary files?

link|improve this question

feedback

2 Answers

Configuration management should be done in the preferred form for making modifications. For a disk image, that means the actual files, together with a build script for building the image. The reasoning behind this has to do with the reasons you keep a history in the first place:

  • Determine in what revision a bug or feature was introduced, and by whom
  • Check out a previous revision to debug a field issue, maybe adding temporary debug code to it
  • Be able to make branches for various reasons, and merge them together when appropriate

Since a disk image can be extracted, you're not completely stuck if you just track the binary, but those actions are a lot easier by tracking the source.

link|improve this answer
Thanks. This is a great summary of why you'd want to use version control, but it doesn't answer the question. The question asks what tools are available that can handle this sort of a task for a full system image. – David Pfeffer Aug 14 '11 at 23:18
That's my whole point, there aren't good tools to work with the binary image because it's vastly more useful to do that sort of configuration management at the source level. – Karl Bielefeldt Aug 15 '11 at 1:23
The question then proceeds to ask if there's tools that could handle this for all files on disk. There's no "source" here; they're system config files. – David Pfeffer Aug 16 '11 at 23:56
feedback
up vote 0 down vote accepted

We ended up putting key files in source control but not the entire system.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.