Ok, try to make shfs work with 2.6.19, raw fixes, so might need better reading of...
[openwrt.git] / scripts / gen_target_mk.pl
index 0e4d50a..613c35b 100755 (executable)
@@ -70,17 +70,19 @@ foreach $target (@target) {
   $profiles_eval .= "
 \$(eval \$(call Profile,$conf\_$profile->{id}))"
        }
-       print <<EOF
+       print "
 ifeq (\$(CONFIG_LINUX_$conf),y)
   define Target
     KERNEL:=$target->{kernel}
     BOARD:=$target->{board}
+    BOARDNAME:=$target->{name}
     LINUX_VERSION:=$target->{version}
     LINUX_RELEASE:=$target->{release}
     LINUX_KARCH:=$target->{karch}
+    DEFAULT_PACKAGES:=".join(" ", @{$target->{packages}})."
   endef$profiles_def
 endif$profiles_eval
 
-EOF
+"
 }
 print "\$(eval \$(call Target))\n";
This page took 0.029833 seconds and 4 git commands to generate.