Browse Source

Update documentation to reflect the current reality.

Issue:	#28
Adrian Chadd 11 years ago
parent
commit
78975680e4
1 changed files with 12 additions and 4 deletions
  1. 12 4
      README

+ 12 - 4
README

@@ -61,17 +61,25 @@ You're in for a treat.
 
   * Linux:
 
-  $ make firmware
+  $ make -C target_firmware
 
   * FreeBSD:
 
-  edit the build script, change make to gmake, and then
-
-  $ ./build
+  $ gmake -C target_firmware
 
 You will end up with two .fw files - one for the AR7010 and one for
 the AR9271 in the target_firmware directory.
 
+You can clean the firmware build (when you wish to force a rebuild)
+by doing:
+
+  * Linux:
+
+  $ make -C target_firmware clean
+
+  * FreeBSD:
+
+  $ gmake -C target_firmware clean
 
 Then what?
 ----------